| OLD | NEW |
| 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_EXTENSIONS_EXTENSION_HOST_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_HOST_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_HOST_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 const gfx::Size& new_size) OVERRIDE; | 156 const gfx::Size& new_size) OVERRIDE; |
| 157 virtual content::JavaScriptDialogCreator* | 157 virtual content::JavaScriptDialogCreator* |
| 158 GetJavaScriptDialogCreator() OVERRIDE; | 158 GetJavaScriptDialogCreator() OVERRIDE; |
| 159 virtual void RunFileChooser( | 159 virtual void RunFileChooser( |
| 160 content::WebContents* tab, | 160 content::WebContents* tab, |
| 161 const content::FileChooserParams& params) OVERRIDE; | 161 const content::FileChooserParams& params) OVERRIDE; |
| 162 virtual void AddNewContents(content::WebContents* source, | 162 virtual void AddNewContents(content::WebContents* source, |
| 163 content::WebContents* new_contents, | 163 content::WebContents* new_contents, |
| 164 WindowOpenDisposition disposition, | 164 WindowOpenDisposition disposition, |
| 165 const gfx::Rect& initial_pos, | 165 const gfx::Rect& initial_pos, |
| 166 bool user_gesture) OVERRIDE; | 166 bool user_gesture, |
| 167 bool* was_blocked) OVERRIDE; |
| 167 virtual void CloseContents(content::WebContents* contents) OVERRIDE; | 168 virtual void CloseContents(content::WebContents* contents) OVERRIDE; |
| 168 virtual void OnStartDownload(content::WebContents* source, | 169 virtual void OnStartDownload(content::WebContents* source, |
| 169 content::DownloadItem* download) OVERRIDE; | 170 content::DownloadItem* download) OVERRIDE; |
| 170 virtual void WebIntentDispatch( | 171 virtual void WebIntentDispatch( |
| 171 content::WebContents* web_contents, | 172 content::WebContents* web_contents, |
| 172 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; | 173 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; |
| 173 | 174 |
| 174 // content::NotificationObserver | 175 // content::NotificationObserver |
| 175 virtual void Observe(int type, | 176 virtual void Observe(int type, |
| 176 const content::NotificationSource& source, | 177 const content::NotificationSource& source, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 259 |
| 259 // Used to measure how long it's been since the host was created. | 260 // Used to measure how long it's been since the host was created. |
| 260 PerfTimer since_created_; | 261 PerfTimer since_created_; |
| 261 | 262 |
| 262 DISALLOW_COPY_AND_ASSIGN(ExtensionHost); | 263 DISALLOW_COPY_AND_ASSIGN(ExtensionHost); |
| 263 }; | 264 }; |
| 264 | 265 |
| 265 } // namespace extensions | 266 } // namespace extensions |
| 266 | 267 |
| 267 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_HOST_H_ | 268 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_HOST_H_ |
| OLD | NEW |