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

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

Issue 454133003: [ChromeDriver] Implementing tracing support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing nits Created 6 years, 4 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
« no previous file with comments | « chrome/test/chromedriver/client/chromedriver.py ('k') | chrome/test/chromedriver/logging.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_LOGGING_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_LOGGING_H_
6 #define CHROME_TEST_CHROMEDRIVER_LOGGING_H_ 6 #define CHROME_TEST_CHROMEDRIVER_LOGGING_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/scoped_vector.h" 12 #include "base/memory/scoped_vector.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "chrome/test/chromedriver/chrome/log.h" 14 #include "chrome/test/chromedriver/chrome/log.h"
15 15
16 struct Capabilities; 16 struct Capabilities;
17 class CommandListener; 17 class CommandListener;
18 class DevToolsEventListener; 18 class DevToolsEventListener;
19 class ListValue; 19 class ListValue;
20 struct Session;
20 class Status; 21 class Status;
21 22
22 // Accumulates WebDriver Logging API entries of a given type and minimum level. 23 // Accumulates WebDriver Logging API entries of a given type and minimum level.
23 // See https://code.google.com/p/selenium/wiki/Logging. 24 // See https://code.google.com/p/selenium/wiki/Logging.
24 class WebDriverLog : public Log { 25 class WebDriverLog : public Log {
25 public: 26 public:
26 static const char kBrowserType[]; 27 static const char kBrowserType[];
27 static const char kDriverType[]; 28 static const char kDriverType[];
28 static const char kPerformanceType[]; 29 static const char kPerformanceType[];
29 30
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 62
62 DISALLOW_COPY_AND_ASSIGN(WebDriverLog); 63 DISALLOW_COPY_AND_ASSIGN(WebDriverLog);
63 }; 64 };
64 65
65 // Initializes logging system for ChromeDriver. Returns true on success. 66 // Initializes logging system for ChromeDriver. Returns true on success.
66 bool InitLogging(); 67 bool InitLogging();
67 68
68 // Creates |Log|s, |DevToolsEventListener|s, and |CommandListener|s based on 69 // Creates |Log|s, |DevToolsEventListener|s, and |CommandListener|s based on
69 // logging preferences. 70 // logging preferences.
70 Status CreateLogs(const Capabilities& capabilities, 71 Status CreateLogs(const Capabilities& capabilities,
72 const Session* session,
71 ScopedVector<WebDriverLog>* out_logs, 73 ScopedVector<WebDriverLog>* out_logs,
72 ScopedVector<DevToolsEventListener>* out_devtools_listeners, 74 ScopedVector<DevToolsEventListener>* out_devtools_listeners,
73 ScopedVector<CommandListener>* out_command_listeners); 75 ScopedVector<CommandListener>* out_command_listeners);
74 76
75 #endif // CHROME_TEST_CHROMEDRIVER_LOGGING_H_ 77 #endif // CHROME_TEST_CHROMEDRIVER_LOGGING_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/client/chromedriver.py ('k') | chrome/test/chromedriver/logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698