1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #include "data_log.h"
12
13 #include <string>
14
15 namespace webrtc {
16
CreateLog()17 int DataLog::CreateLog() {
18 return 0;
19 }
20
ReturnLog()21 void DataLog::ReturnLog() {
22 }
23
Combine(const std::string & table_name,int table_id)24 std::string DataLog::Combine(const std::string& table_name, int table_id) {
25 return std::string();
26 }
27
AddTable(const std::string &)28 int DataLog::AddTable(const std::string& /*table_name*/) {
29 return 0;
30 }
31
AddColumn(const std::string &,const std::string &,int)32 int DataLog::AddColumn(const std::string& /*table_name*/,
33 const std::string& /*column_name*/,
34 int /*multi_value_length*/) {
35 return 0;
36 }
37
NextRow(const std::string &)38 int DataLog::NextRow(const std::string& /*table_name*/) {
39 return 0;
40 }
41
DataLogImpl()42 DataLogImpl::DataLogImpl() {
43 }
44
~DataLogImpl()45 DataLogImpl::~DataLogImpl() {
46 }
47
StaticInstance()48 DataLogImpl* DataLogImpl::StaticInstance() {
49 return NULL;
50 }
51
ReturnLog()52 void DataLogImpl::ReturnLog() {
53 }
54
AddTable(const std::string &)55 int DataLogImpl::AddTable(const std::string& /*table_name*/) {
56 return 0;
57 }
58
AddColumn(const std::string &,const std::string &,int)59 int DataLogImpl::AddColumn(const std::string& /*table_name*/,
60 const std::string& /*column_name*/,
61 int /*multi_value_length*/) {
62 return 0;
63 }
64
InsertCell(const std::string &,const std::string &,const Container *)65 int DataLogImpl::InsertCell(const std::string& /*table_name*/,
66 const std::string& /*column_name*/,
67 const Container* /*value_container*/) {
68 return 0;
69 }
70
NextRow(const std::string &)71 int DataLogImpl::NextRow(const std::string& /*table_name*/) {
72 return 0;
73 }
74
Flush()75 void DataLogImpl::Flush() {
76 }
77
Run(void *)78 bool DataLogImpl::Run(void* /*obj*/) {
79 return true;
80 }
81
Process()82 void DataLogImpl::Process() {
83 }
84
StopThread()85 void DataLogImpl::StopThread() {
86 }
87
88 } // namespace webrtc
89