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

Side by Side Diff: chrome/test/chromedriver/performance_logger.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_CHROMEDRIVER_PERFORMANCE_LOGGER_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_PERFORMANCE_LOGGER_H_
6 #define CHROME_TEST_CHROMEDRIVER_PERFORMANCE_LOGGER_H_ 6 #define CHROME_TEST_CHROMEDRIVER_PERFORMANCE_LOGGER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
12 #include "chrome/test/chromedriver/capabilities.h" 12 #include "chrome/test/chromedriver/capabilities.h"
13 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h" 13 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h"
14 #include "chrome/test/chromedriver/command_listener.h" 14 #include "chrome/test/chromedriver/command_listener.h"
15 15
16 class Log; 16 class Log;
17 struct Session; 17 struct Session;
18 18
19 // Translates DevTools profiler events into Log messages with info level. 19 // Translates DevTools profiler events into Log messages with info level.
20 // 20 //
21 // The message is a JSON string of the following structure: 21 // The message is a JSON string of the following structure:
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 Log* log_; // The log where to create entries. 84 Log* log_; // The log where to create entries.
85 const Session* session_; 85 const Session* session_;
86 PerfLoggingPrefs prefs_; 86 PerfLoggingPrefs prefs_;
87 DevToolsClient* browser_client_; // Pointer to browser-wide |DevToolsClient|. 87 DevToolsClient* browser_client_; // Pointer to browser-wide |DevToolsClient|.
88 bool trace_buffering_; // True unless trace stopped and all events received. 88 bool trace_buffering_; // True unless trace stopped and all events received.
89 89
90 DISALLOW_COPY_AND_ASSIGN(PerformanceLogger); 90 DISALLOW_COPY_AND_ASSIGN(PerformanceLogger);
91 }; 91 };
92 92
93 #endif // CHROME_TEST_CHROMEDRIVER_PERFORMANCE_LOGGER_H_ 93 #endif // CHROME_TEST_CHROMEDRIVER_PERFORMANCE_LOGGER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/net/websocket_unittest.cc ('k') | chrome/test/chromedriver/performance_logger_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698