| 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_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 virtual bool OnGoToEntryOffset(int offset) OVERRIDE; | 132 virtual bool OnGoToEntryOffset(int offset) OVERRIDE; |
| 133 virtual bool HandleContextMenu( | 133 virtual bool HandleContextMenu( |
| 134 const content::ContextMenuParams& params) OVERRIDE; | 134 const content::ContextMenuParams& params) OVERRIDE; |
| 135 virtual void BeforeUnloadFired(content::WebContents* tab, | 135 virtual void BeforeUnloadFired(content::WebContents* tab, |
| 136 bool proceed, | 136 bool proceed, |
| 137 bool* proceed_to_fire_unload) OVERRIDE; | 137 bool* proceed_to_fire_unload) OVERRIDE; |
| 138 virtual content::JavaScriptDialogManager* | 138 virtual content::JavaScriptDialogManager* |
| 139 GetJavaScriptDialogManager() OVERRIDE; | 139 GetJavaScriptDialogManager() OVERRIDE; |
| 140 virtual void ShowRepostFormWarningDialog( | 140 virtual void ShowRepostFormWarningDialog( |
| 141 content::WebContents* source) OVERRIDE; | 141 content::WebContents* source) OVERRIDE; |
| 142 virtual content::ColorChooser* OpenColorChooser( |
| 143 content::WebContents* web_contents, |
| 144 int color_chooser_id, |
| 145 SkColor color) OVERRIDE; |
| 142 virtual void RunFileChooser( | 146 virtual void RunFileChooser( |
| 143 content::WebContents* tab, | 147 content::WebContents* tab, |
| 144 const content::FileChooserParams& params) OVERRIDE; | 148 const content::FileChooserParams& params) OVERRIDE; |
| 145 virtual void EnumerateDirectory(content::WebContents* tab, | 149 virtual void EnumerateDirectory(content::WebContents* tab, |
| 146 int request_id, | 150 int request_id, |
| 147 const base::FilePath& path) OVERRIDE; | 151 const base::FilePath& path) OVERRIDE; |
| 148 virtual void JSOutOfMemory(content::WebContents* tab); | 152 virtual void JSOutOfMemory(content::WebContents* tab); |
| 149 virtual void RegisterProtocolHandler(content::WebContents* tab, | 153 virtual void RegisterProtocolHandler(content::WebContents* tab, |
| 150 const std::string& protocol, | 154 const std::string& protocol, |
| 151 const GURL& url, | 155 const GURL& url, |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 return false; | 390 return false; |
| 387 } | 391 } |
| 388 | 392 |
| 389 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, | 393 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, |
| 390 bool* proceed_to_fire_unload) { | 394 bool* proceed_to_fire_unload) { |
| 391 NOTREACHED(); | 395 NOTREACHED(); |
| 392 } | 396 } |
| 393 }; | 397 }; |
| 394 | 398 |
| 395 #endif // CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ | 399 #endif // CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| OLD | NEW |