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

Side by Side Diff: chrome/browser/devtools/device/devtools_android_bridge.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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 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_BROWSER_DEVTOOLS_DEVICE_DEVTOOLS_ANDROID_BRIDGE_H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_DEVTOOLS_ANDROID_BRIDGE_H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_DEVTOOLS_ANDROID_BRIDGE_H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_DEVTOOLS_ANDROID_BRIDGE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 static DevToolsAndroidBridge* GetForProfile(Profile* profile); 63 static DevToolsAndroidBridge* GetForProfile(Profile* profile);
64 64
65 private: 65 private:
66 friend struct DefaultSingletonTraits<Factory>; 66 friend struct DefaultSingletonTraits<Factory>;
67 67
68 Factory(); 68 Factory();
69 virtual ~Factory(); 69 virtual ~Factory();
70 70
71 // BrowserContextKeyedServiceFactory overrides: 71 // BrowserContextKeyedServiceFactory overrides:
72 virtual KeyedService* BuildServiceInstanceFor( 72 virtual KeyedService* BuildServiceInstanceFor(
73 content::BrowserContext* context) const OVERRIDE; 73 content::BrowserContext* context) const override;
74 DISALLOW_COPY_AND_ASSIGN(Factory); 74 DISALLOW_COPY_AND_ASSIGN(Factory);
75 }; 75 };
76 76
77 class RemotePage { 77 class RemotePage {
78 public: 78 public:
79 virtual ~RemotePage() {} 79 virtual ~RemotePage() {}
80 virtual DevToolsTargetImpl* GetTarget() = 0; 80 virtual DevToolsTargetImpl* GetTarget() = 0;
81 virtual std::string GetFrontendURL() = 0; 81 virtual std::string GetFrontendURL() = 0;
82 }; 82 };
83 83
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 278
279 typedef std::vector<PortForwardingListener*> PortForwardingListeners; 279 typedef std::vector<PortForwardingListener*> PortForwardingListeners;
280 PortForwardingListeners port_forwarding_listeners_; 280 PortForwardingListeners port_forwarding_listeners_;
281 scoped_ptr<PortForwardingController> port_forwarding_controller_; 281 scoped_ptr<PortForwardingController> port_forwarding_controller_;
282 282
283 PrefChangeRegistrar pref_change_registrar_; 283 PrefChangeRegistrar pref_change_registrar_;
284 DISALLOW_COPY_AND_ASSIGN(DevToolsAndroidBridge); 284 DISALLOW_COPY_AND_ASSIGN(DevToolsAndroidBridge);
285 }; 285 };
286 286
287 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_DEVTOOLS_ANDROID_BRIDGE_H_ 287 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_DEVTOOLS_ANDROID_BRIDGE_H_
OLDNEW
« no previous file with comments | « chrome/browser/devtools/device/android_web_socket.cc ('k') | chrome/browser/devtools/device/devtools_android_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698