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

Side by Side Diff: chrome/browser/ui/webui/inspect_ui.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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
« no previous file with comments | « chrome/browser/ui/webui/identity_internals_ui.cc ('k') | chrome/browser/ui/webui/inspect_ui.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_UI_WEBUI_INSPECT_UI_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_
6 #define CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ 6 #define CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 const std::string& source_id, 43 const std::string& source_id,
44 const std::string& browser_id, 44 const std::string& browser_id,
45 const GURL& frontend_url); 45 const GURL& frontend_url);
46 46
47 static void InspectDevices(Browser* browser); 47 static void InspectDevices(Browser* browser);
48 48
49 private: 49 private:
50 // content::NotificationObserver overrides. 50 // content::NotificationObserver overrides.
51 virtual void Observe(int type, 51 virtual void Observe(int type,
52 const content::NotificationSource& source, 52 const content::NotificationSource& source,
53 const content::NotificationDetails& details) OVERRIDE; 53 const content::NotificationDetails& details) override;
54 54
55 void StartListeningNotifications(); 55 void StartListeningNotifications();
56 void StopListeningNotifications(); 56 void StopListeningNotifications();
57 57
58 content::WebUIDataSource* CreateInspectUIHTMLSource(); 58 content::WebUIDataSource* CreateInspectUIHTMLSource();
59 59
60 void UpdateDiscoverUsbDevicesEnabled(); 60 void UpdateDiscoverUsbDevicesEnabled();
61 void UpdatePortForwardingEnabled(); 61 void UpdatePortForwardingEnabled();
62 void UpdatePortForwardingConfig(); 62 void UpdatePortForwardingConfig();
63 63
(...skipping 27 matching lines...) Expand all
91 91
92 typedef std::map<std::string, DevToolsTargetsUIHandler*> TargetHandlerMap; 92 typedef std::map<std::string, DevToolsTargetsUIHandler*> TargetHandlerMap;
93 TargetHandlerMap target_handlers_; 93 TargetHandlerMap target_handlers_;
94 94
95 scoped_ptr<PortForwardingStatusSerializer> port_status_serializer_; 95 scoped_ptr<PortForwardingStatusSerializer> port_status_serializer_;
96 96
97 DISALLOW_COPY_AND_ASSIGN(InspectUI); 97 DISALLOW_COPY_AND_ASSIGN(InspectUI);
98 }; 98 };
99 99
100 #endif // CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ 100 #endif // CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/identity_internals_ui.cc ('k') | chrome/browser/ui/webui/inspect_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698