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

Side by Side Diff: chrome/browser/extensions/chrome_extension_web_contents_observer.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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 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_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_
6 #define CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
10 #include "content/public/browser/web_contents_user_data.h" 10 #include "content/public/browser/web_contents_user_data.h"
(...skipping 14 matching lines...) Expand all
25 public content::WebContentsUserData<ChromeExtensionWebContentsObserver> { 25 public content::WebContentsUserData<ChromeExtensionWebContentsObserver> {
26 private: 26 private:
27 friend class content::WebContentsUserData<ChromeExtensionWebContentsObserver>; 27 friend class content::WebContentsUserData<ChromeExtensionWebContentsObserver>;
28 28
29 explicit ChromeExtensionWebContentsObserver( 29 explicit ChromeExtensionWebContentsObserver(
30 content::WebContents* web_contents); 30 content::WebContents* web_contents);
31 virtual ~ChromeExtensionWebContentsObserver(); 31 virtual ~ChromeExtensionWebContentsObserver();
32 32
33 // content::WebContentsObserver overrides. 33 // content::WebContentsObserver overrides.
34 virtual void RenderViewCreated(content::RenderViewHost* render_view_host) 34 virtual void RenderViewCreated(content::RenderViewHost* render_view_host)
35 OVERRIDE; 35 override;
36 virtual bool OnMessageReceived( 36 virtual bool OnMessageReceived(
37 const IPC::Message& message, 37 const IPC::Message& message,
38 content::RenderFrameHost* render_frame_host) OVERRIDE; 38 content::RenderFrameHost* render_frame_host) override;
39 39
40 // Adds a message to the extensions ErrorConsole. 40 // Adds a message to the extensions ErrorConsole.
41 void OnDetailedConsoleMessageAdded(const base::string16& message, 41 void OnDetailedConsoleMessageAdded(const base::string16& message,
42 const base::string16& source, 42 const base::string16& source,
43 const StackTrace& stack_trace, 43 const StackTrace& stack_trace,
44 int32 severity_level); 44 int32 severity_level);
45 45
46 // Reloads an extension if it is on the terminated list. 46 // Reloads an extension if it is on the terminated list.
47 void ReloadIfTerminated(content::RenderViewHost* render_view_host); 47 void ReloadIfTerminated(content::RenderViewHost* render_view_host);
48 48
49 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionWebContentsObserver); 49 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionWebContentsObserver);
50 }; 50 };
51 51
52 } // namespace extensions 52 } // namespace extensions
53 53
54 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_ 54 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698