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

Side by Side Diff: webrtc/system_wrappers/include/data_log.h

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 15 matching lines...) Expand all
26 // multi-value-columns a small Matlab script is needed, available at 26 // multi-value-columns a small Matlab script is needed, available at
27 // trunk/tools/matlab/parseLog.m. 27 // trunk/tools/matlab/parseLog.m.
28 // 28 //
29 // Table names and column names are case sensitive. 29 // Table names and column names are case sensitive.
30 30
31 #ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ 31 #ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_
32 #define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ 32 #define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_
33 33
34 #include <string> 34 #include <string>
35 35
36 #include "webrtc/system_wrappers/interface/data_log_impl.h" 36 #include "webrtc/system_wrappers/include/data_log_impl.h"
37 37
38 namespace webrtc { 38 namespace webrtc {
39 39
40 class DataLog { 40 class DataLog {
41 public: 41 public:
42 // Creates a log which uses a separate thread (referred to as the file 42 // Creates a log which uses a separate thread (referred to as the file
43 // writer thread) for writing log rows to file. 43 // writer thread) for writing log rows to file.
44 // 44 //
45 // Calls to this function after the log object has been created will only 45 // Calls to this function after the log object has been created will only
46 // increment the reference counter. 46 // increment the reference counter.
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 // For the table with name table_name: Writes the current row to file. 111 // For the table with name table_name: Writes the current row to file.
112 // Starts a new empty row. 112 // Starts a new empty row.
113 // table_name is treated in a case-sensitive way. 113 // table_name is treated in a case-sensitive way.
114 static int NextRow(const std::string& table_name); 114 static int NextRow(const std::string& table_name);
115 }; 115 };
116 116
117 } // namespace webrtc 117 } // namespace webrtc
118 118
119 #endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_ 119 #endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_
OLDNEW
« no previous file with comments | « webrtc/system_wrappers/include/critical_section_wrapper.h ('k') | webrtc/system_wrappers/include/data_log_c.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698