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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 content::WebContents* new_contents) OVERRIDE; | 581 content::WebContents* new_contents) OVERRIDE; |
582 virtual void ContentRestrictionsChanged( | 582 virtual void ContentRestrictionsChanged( |
583 content::WebContents* source) OVERRIDE; | 583 content::WebContents* source) OVERRIDE; |
584 virtual void RendererUnresponsive(content::WebContents* source) OVERRIDE; | 584 virtual void RendererUnresponsive(content::WebContents* source) OVERRIDE; |
585 virtual void RendererResponsive(content::WebContents* source) OVERRIDE; | 585 virtual void RendererResponsive(content::WebContents* source) OVERRIDE; |
586 virtual void WorkerCrashed(content::WebContents* source) OVERRIDE; | 586 virtual void WorkerCrashed(content::WebContents* source) OVERRIDE; |
587 virtual void DidNavigateMainFramePostCommit( | 587 virtual void DidNavigateMainFramePostCommit( |
588 content::WebContents* web_contents) OVERRIDE; | 588 content::WebContents* web_contents) OVERRIDE; |
589 virtual void DidNavigateToPendingEntry( | 589 virtual void DidNavigateToPendingEntry( |
590 content::WebContents* web_contents) OVERRIDE; | 590 content::WebContents* web_contents) OVERRIDE; |
591 virtual content::JavaScriptDialogCreator* | 591 virtual content::JavaScriptDialogManager* |
592 GetJavaScriptDialogCreator() OVERRIDE; | 592 GetJavaScriptDialogManager() OVERRIDE; |
593 virtual content::ColorChooser* OpenColorChooser( | 593 virtual content::ColorChooser* OpenColorChooser( |
594 content::WebContents* web_contents, | 594 content::WebContents* web_contents, |
595 int color_chooser_id, | 595 int color_chooser_id, |
596 SkColor color) OVERRIDE; | 596 SkColor color) OVERRIDE; |
597 virtual void DidEndColorChooser() OVERRIDE; | 597 virtual void DidEndColorChooser() OVERRIDE; |
598 virtual void RunFileChooser( | 598 virtual void RunFileChooser( |
599 content::WebContents* web_contents, | 599 content::WebContents* web_contents, |
600 const content::FileChooserParams& params) OVERRIDE; | 600 const content::FileChooserParams& params) OVERRIDE; |
601 virtual void EnumerateDirectory(content::WebContents* web_contents, | 601 virtual void EnumerateDirectory(content::WebContents* web_contents, |
602 int request_id, | 602 int request_id, |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
930 bool window_has_shown_; | 930 bool window_has_shown_; |
931 | 931 |
932 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 932 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
933 // before DidEndColorChooser is called. | 933 // before DidEndColorChooser is called. |
934 scoped_ptr<content::ColorChooser> color_chooser_; | 934 scoped_ptr<content::ColorChooser> color_chooser_; |
935 | 935 |
936 DISALLOW_COPY_AND_ASSIGN(Browser); | 936 DISALLOW_COPY_AND_ASSIGN(Browser); |
937 }; | 937 }; |
938 | 938 |
939 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 939 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |