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
15namespace webrtc {
16
17int DataLog::CreateLog() {
18  return 0;
19}
20
21void DataLog::ReturnLog() {
22}
23
24std::string DataLog::Combine(const std::string& table_name, int table_id) {
25  return std::string();
26}
27
28int DataLog::AddTable(const std::string& /*table_name*/) {
29  return 0;
30}
31
32int DataLog::AddColumn(const std::string& /*table_name*/,
33                       const std::string& /*column_name*/,
34                       int /*multi_value_length*/) {
35  return 0;
36}
37
38int DataLog::NextRow(const std::string& /*table_name*/) {
39  return 0;
40}
41
42DataLogImpl::DataLogImpl() {
43}
44
45DataLogImpl::~DataLogImpl() {
46}
47
48DataLogImpl* DataLogImpl::StaticInstance() {
49  return NULL;
50}
51
52void DataLogImpl::ReturnLog() {
53}
54
55int DataLogImpl::AddTable(const std::string& /*table_name*/) {
56  return 0;
57}
58
59int DataLogImpl::AddColumn(const std::string& /*table_name*/,
60                           const std::string& /*column_name*/,
61                           int /*multi_value_length*/) {
62  return 0;
63}
64
65int DataLogImpl::InsertCell(const std::string& /*table_name*/,
66                            const std::string& /*column_name*/,
67                            const Container* /*value_container*/) {
68  return 0;
69}
70
71int DataLogImpl::NextRow(const std::string& /*table_name*/) {
72  return 0;
73}
74
75void DataLogImpl::Flush() {
76}
77
78bool DataLogImpl::Run(void* /*obj*/) {
79  return true;
80}
81
82void DataLogImpl::Process() {
83}
84
85void DataLogImpl::StopThread() {
86}
87
88}  // namespace webrtc
89