| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 class BrowserToolbarModelDelegate; | 52 class BrowserToolbarModelDelegate; |
| 53 class BrowserTabRestoreServiceDelegate; | 53 class BrowserTabRestoreServiceDelegate; |
| 54 class BrowserWindow; | 54 class BrowserWindow; |
| 55 class FindBarController; | 55 class FindBarController; |
| 56 class FullscreenController; | 56 class FullscreenController; |
| 57 class PrefService; | 57 class PrefService; |
| 58 class Profile; | 58 class Profile; |
| 59 class SearchDelegate; | 59 class SearchDelegate; |
| 60 class SearchModel; | 60 class SearchModel; |
| 61 class StatusBubble; | 61 class StatusBubble; |
| 62 class TabNavigation; | |
| 63 class TabStripModel; | 62 class TabStripModel; |
| 64 class TabStripModelDelegate; | 63 class TabStripModelDelegate; |
| 65 struct SearchMode; | 64 struct SearchMode; |
| 66 struct WebApplicationInfo; | 65 struct WebApplicationInfo; |
| 67 class WebContentsModalDialogHost; | 66 class WebContentsModalDialogHost; |
| 68 | 67 |
| 69 namespace chrome { | 68 namespace chrome { |
| 70 class BrowserCommandController; | 69 class BrowserCommandController; |
| 71 class UnloadController; | 70 class UnloadController; |
| 72 } | 71 } |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 bool window_has_shown_; | 917 bool window_has_shown_; |
| 919 | 918 |
| 920 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 919 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
| 921 // before DidEndColorChooser is called. | 920 // before DidEndColorChooser is called. |
| 922 scoped_ptr<content::ColorChooser> color_chooser_; | 921 scoped_ptr<content::ColorChooser> color_chooser_; |
| 923 | 922 |
| 924 DISALLOW_COPY_AND_ASSIGN(Browser); | 923 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 925 }; | 924 }; |
| 926 | 925 |
| 927 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 926 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |