Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Unified Diff: webrtc/system_wrappers/source/data_log_no_op.cc

Issue 2439473002: Delete DataLog abstraction, which was almost unused. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/system_wrappers/source/data_log_no_op.cc
diff --git a/webrtc/system_wrappers/source/data_log_no_op.cc b/webrtc/system_wrappers/source/data_log_no_op.cc
deleted file mode 100644
index bdd2b0a403dd2081f963eadbe9ed3c99e9d52142..0000000000000000000000000000000000000000
--- a/webrtc/system_wrappers/source/data_log_no_op.cc
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#include "webrtc/system_wrappers/include/data_log.h"
-
-#include <string>
-
-namespace webrtc {
-
-int DataLog::CreateLog() {
- return 0;
-}
-
-void DataLog::ReturnLog() {
-}
-
-std::string DataLog::Combine(const std::string& table_name, int table_id) {
- return std::string();
-}
-
-int DataLog::AddTable(const std::string& /*table_name*/) {
- return 0;
-}
-
-int DataLog::AddColumn(const std::string& /*table_name*/,
- const std::string& /*column_name*/,
- int /*multi_value_length*/) {
- return 0;
-}
-
-int DataLog::NextRow(const std::string& /*table_name*/) {
- return 0;
-}
-
-DataLogImpl::DataLogImpl() {
-}
-
-DataLogImpl::~DataLogImpl() {
-}
-
-DataLogImpl* DataLogImpl::StaticInstance() {
- return NULL;
-}
-
-void DataLogImpl::ReturnLog() {
-}
-
-int DataLogImpl::AddTable(const std::string& /*table_name*/) {
- return 0;
-}
-
-int DataLogImpl::AddColumn(const std::string& /*table_name*/,
- const std::string& /*column_name*/,
- int /*multi_value_length*/) {
- return 0;
-}
-
-int DataLogImpl::InsertCell(const std::string& /*table_name*/,
- const std::string& /*column_name*/,
- const Container* /*value_container*/) {
- return 0;
-}
-
-int DataLogImpl::NextRow(const std::string& /*table_name*/) {
- return 0;
-}
-
-void DataLogImpl::Flush() {
-}
-
-bool DataLogImpl::Run(void* /*obj*/) {
- return true;
-}
-
-void DataLogImpl::Process() {
-}
-
-void DataLogImpl::StopThread() {
-}
-
-} // namespace webrtc
« no previous file with comments | « webrtc/system_wrappers/source/data_log_helpers_unittest.cc ('k') | webrtc/system_wrappers/source/data_log_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698