| OLD | NEW |
| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 explicit ChromeExtensionWebContentsObserver( | 29 explicit ChromeExtensionWebContentsObserver( |
| 30 content::WebContents* web_contents); | 30 content::WebContents* web_contents); |
| 31 ~ChromeExtensionWebContentsObserver() override; | 31 ~ChromeExtensionWebContentsObserver() override; |
| 32 | 32 |
| 33 // content::WebContentsObserver overrides. | 33 // content::WebContentsObserver overrides. |
| 34 void RenderViewCreated(content::RenderViewHost* render_view_host) override; | 34 void RenderViewCreated(content::RenderViewHost* render_view_host) override; |
| 35 bool OnMessageReceived(const IPC::Message& message, | 35 bool OnMessageReceived(const IPC::Message& message, |
| 36 content::RenderFrameHost* render_frame_host) override; | 36 content::RenderFrameHost* render_frame_host) override; |
| 37 | 37 |
| 38 // ExtensionWebContentsObserver override. |
| 39 void RegisterMojoServices(content::RenderFrameHost* render_frame_host, |
| 40 const Extension* extension) override; |
| 41 |
| 38 // Adds a message to the extensions ErrorConsole. | 42 // Adds a message to the extensions ErrorConsole. |
| 39 void OnDetailedConsoleMessageAdded(const base::string16& message, | 43 void OnDetailedConsoleMessageAdded(const base::string16& message, |
| 40 const base::string16& source, | 44 const base::string16& source, |
| 41 const StackTrace& stack_trace, | 45 const StackTrace& stack_trace, |
| 42 int32 severity_level); | 46 int32 severity_level); |
| 43 | 47 |
| 44 // Reloads an extension if it is on the terminated list. | 48 // Reloads an extension if it is on the terminated list. |
| 45 void ReloadIfTerminated(content::RenderViewHost* render_view_host); | 49 void ReloadIfTerminated(content::RenderViewHost* render_view_host); |
| 46 | 50 |
| 47 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionWebContentsObserver); | 51 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionWebContentsObserver); |
| 48 }; | 52 }; |
| 49 | 53 |
| 50 } // namespace extensions | 54 } // namespace extensions |
| 51 | 55 |
| 52 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_ | 56 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSION_WEB_CONTENTS_OBSERVER_H_ |
| OLD | NEW |