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

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

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 (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_CHROME_DEBUGGER_TRACKER_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_DEBUGGER_TRACKER_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_DEBUGGER_TRACKER_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_DEBUGGER_TRACKER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h" 12 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h"
13 13
14 namespace base { 14 namespace base {
15 class DictionaryValue; 15 class DictionaryValue;
16 } 16 }
17 17
18 class DevToolsClient; 18 class DevToolsClient;
19 class Status; 19 class Status;
20 20
21 // Tracks the debugger state of the page. 21 // Tracks the debugger state of the page.
22 class DebuggerTracker : public DevToolsEventListener { 22 class DebuggerTracker : public DevToolsEventListener {
23 public: 23 public:
24 explicit DebuggerTracker(DevToolsClient* client); 24 explicit DebuggerTracker(DevToolsClient* client);
25 virtual ~DebuggerTracker(); 25 virtual ~DebuggerTracker();
26 26
27 // Overridden from DevToolsEventListener: 27 // Overridden from DevToolsEventListener:
28 virtual Status OnEvent(DevToolsClient* client, 28 virtual Status OnEvent(DevToolsClient* client,
29 const std::string& method, 29 const std::string& method,
30 const base::DictionaryValue& params) OVERRIDE; 30 const base::DictionaryValue& params) override;
31 31
32 private: 32 private:
33 DISALLOW_COPY_AND_ASSIGN(DebuggerTracker); 33 DISALLOW_COPY_AND_ASSIGN(DebuggerTracker);
34 }; 34 };
35 35
36 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_DEBUGGER_TRACKER_H_ 36 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_DEBUGGER_TRACKER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome/console_logger_unittest.cc ('k') | chrome/test/chromedriver/chrome/device_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698