| 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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 virtual content::JavaScriptDialogManager* | 613 virtual content::JavaScriptDialogManager* |
| 614 GetJavaScriptDialogManager() OVERRIDE; | 614 GetJavaScriptDialogManager() OVERRIDE; |
| 615 virtual content::ColorChooser* OpenColorChooser( | 615 virtual content::ColorChooser* OpenColorChooser( |
| 616 content::WebContents* web_contents, SkColor color) OVERRIDE; | 616 content::WebContents* web_contents, SkColor color) OVERRIDE; |
| 617 virtual void RunFileChooser( | 617 virtual void RunFileChooser( |
| 618 content::WebContents* web_contents, | 618 content::WebContents* web_contents, |
| 619 const content::FileChooserParams& params) OVERRIDE; | 619 const content::FileChooserParams& params) OVERRIDE; |
| 620 virtual void EnumerateDirectory(content::WebContents* web_contents, | 620 virtual void EnumerateDirectory(content::WebContents* web_contents, |
| 621 int request_id, | 621 int request_id, |
| 622 const base::FilePath& path) OVERRIDE; | 622 const base::FilePath& path) OVERRIDE; |
| 623 virtual bool EmbedsFullscreenWidget() const OVERRIDE; |
| 623 virtual void ToggleFullscreenModeForTab(content::WebContents* web_contents, | 624 virtual void ToggleFullscreenModeForTab(content::WebContents* web_contents, |
| 624 bool enter_fullscreen) OVERRIDE; | 625 bool enter_fullscreen) OVERRIDE; |
| 625 virtual bool IsFullscreenForTabOrPending( | 626 virtual bool IsFullscreenForTabOrPending( |
| 626 const content::WebContents* web_contents) const OVERRIDE; | 627 const content::WebContents* web_contents) const OVERRIDE; |
| 627 virtual void JSOutOfMemory(content::WebContents* web_contents) OVERRIDE; | 628 virtual void JSOutOfMemory(content::WebContents* web_contents) OVERRIDE; |
| 628 virtual void RegisterProtocolHandler(content::WebContents* web_contents, | 629 virtual void RegisterProtocolHandler(content::WebContents* web_contents, |
| 629 const std::string& protocol, | 630 const std::string& protocol, |
| 630 const GURL& url, | 631 const GURL& url, |
| 631 const string16& title, | 632 const string16& title, |
| 632 bool user_gesture) OVERRIDE; | 633 bool user_gesture) OVERRIDE; |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 | 941 |
| 941 scoped_ptr<chrome::BrowserCommandController> command_controller_; | 942 scoped_ptr<chrome::BrowserCommandController> command_controller_; |
| 942 | 943 |
| 943 // True if the browser window has been shown at least once. | 944 // True if the browser window has been shown at least once. |
| 944 bool window_has_shown_; | 945 bool window_has_shown_; |
| 945 | 946 |
| 946 DISALLOW_COPY_AND_ASSIGN(Browser); | 947 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 947 }; | 948 }; |
| 948 | 949 |
| 949 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 950 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |