| 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> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 18 #include "base/prefs/public/pref_change_registrar.h" | 18 #include "base/prefs/public/pref_change_registrar.h" |
| 19 #include "base/prefs/public/pref_member.h" | 19 #include "base/prefs/public/pref_member.h" |
| 20 #include "base/string16.h" | 20 #include "base/string16.h" |
| 21 #include "chrome/browser/devtools/devtools_toggle_action.h" | 21 #include "chrome/browser/devtools/devtools_toggle_action.h" |
| 22 #include "chrome/browser/event_disposition.h" | |
| 23 #include "chrome/browser/sessions/session_id.h" | 22 #include "chrome/browser/sessions/session_id.h" |
| 24 #include "chrome/browser/ui/blocked_content/blocked_content_tab_helper_delegate.
h" | 23 #include "chrome/browser/ui/blocked_content/blocked_content_tab_helper_delegate.
h" |
| 25 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 24 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
| 26 #include "chrome/browser/ui/bookmarks/bookmark_tab_helper_delegate.h" | 25 #include "chrome/browser/ui/bookmarks/bookmark_tab_helper_delegate.h" |
| 27 #include "chrome/browser/ui/browser_navigator.h" | 26 #include "chrome/browser/ui/browser_navigator.h" |
| 28 #include "chrome/browser/ui/host_desktop.h" | 27 #include "chrome/browser/ui/host_desktop.h" |
| 29 #include "chrome/browser/ui/search/search_model_observer.h" | 28 #include "chrome/browser/ui/search/search_model_observer.h" |
| 30 #include "chrome/browser/ui/search_engines/search_engine_tab_helper_delegate.h" | 29 #include "chrome/browser/ui/search_engines/search_engine_tab_helper_delegate.h" |
| 31 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" | 30 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" |
| 32 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 31 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 33 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 32 #include "chrome/browser/ui/toolbar/toolbar_model.h" |
| 34 #include "chrome/browser/ui/web_contents_modal_dialog_manager_delegate.h" | 33 #include "chrome/browser/ui/web_contents_modal_dialog_manager_delegate.h" |
| 35 #include "chrome/browser/ui/zoom/zoom_observer.h" | 34 #include "chrome/browser/ui/zoom/zoom_observer.h" |
| 36 #include "chrome/common/content_settings.h" | 35 #include "chrome/common/content_settings.h" |
| 37 #include "chrome/common/content_settings_types.h" | 36 #include "chrome/common/content_settings_types.h" |
| 38 #include "chrome/common/extensions/extension_constants.h" | 37 #include "chrome/common/extensions/extension_constants.h" |
| 39 #include "content/public/browser/notification_observer.h" | 38 #include "content/public/browser/notification_observer.h" |
| 40 #include "content/public/browser/notification_registrar.h" | 39 #include "content/public/browser/notification_registrar.h" |
| 41 #include "content/public/browser/page_navigator.h" | 40 #include "content/public/browser/page_navigator.h" |
| 42 #include "content/public/browser/web_contents_delegate.h" | 41 #include "content/public/browser/web_contents_delegate.h" |
| 43 #include "content/public/common/page_transition_types.h" | 42 #include "content/public/common/page_transition_types.h" |
| 44 #include "content/public/common/page_zoom.h" | 43 #include "content/public/common/page_zoom.h" |
| 45 #include "ui/base/ui_base_types.h" | 44 #include "ui/base/ui_base_types.h" |
| 45 #include "ui/base/window_open_disposition.h" |
| 46 #include "ui/gfx/rect.h" | 46 #include "ui/gfx/rect.h" |
| 47 #include "ui/shell_dialogs/select_file_dialog.h" | 47 #include "ui/shell_dialogs/select_file_dialog.h" |
| 48 | 48 |
| 49 class BrowserContentSettingBubbleModelDelegate; | 49 class BrowserContentSettingBubbleModelDelegate; |
| 50 class BrowserSyncedWindowDelegate; | 50 class BrowserSyncedWindowDelegate; |
| 51 class BrowserToolbarModelDelegate; | 51 class BrowserToolbarModelDelegate; |
| 52 class BrowserTabRestoreServiceDelegate; | 52 class BrowserTabRestoreServiceDelegate; |
| 53 class BrowserWindow; | 53 class BrowserWindow; |
| 54 class FindBarController; | 54 class FindBarController; |
| 55 class FullscreenController; | 55 class FullscreenController; |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 bool window_has_shown_; | 936 bool window_has_shown_; |
| 937 | 937 |
| 938 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 938 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
| 939 // before DidEndColorChooser is called. | 939 // before DidEndColorChooser is called. |
| 940 scoped_ptr<content::ColorChooser> color_chooser_; | 940 scoped_ptr<content::ColorChooser> color_chooser_; |
| 941 | 941 |
| 942 DISALLOW_COPY_AND_ASSIGN(Browser); | 942 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 943 }; | 943 }; |
| 944 | 944 |
| 945 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 945 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |