| 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 15 matching lines...) Expand all Loading... |
| 26 #include "chrome/browser/ui/chrome_bubble_manager.h" | 26 #include "chrome/browser/ui/chrome_bubble_manager.h" |
| 27 #include "chrome/browser/ui/chrome_web_modal_dialog_manager_delegate.h" | 27 #include "chrome/browser/ui/chrome_web_modal_dialog_manager_delegate.h" |
| 28 #include "chrome/browser/ui/exclusive_access/exclusive_access_manager.h" | 28 #include "chrome/browser/ui/exclusive_access/exclusive_access_manager.h" |
| 29 #include "chrome/browser/ui/host_desktop.h" | 29 #include "chrome/browser/ui/host_desktop.h" |
| 30 #include "chrome/browser/ui/search/search_tab_helper_delegate.h" | 30 #include "chrome/browser/ui/search/search_tab_helper_delegate.h" |
| 31 #include "chrome/browser/ui/search_engines/search_engine_tab_helper_delegate.h" | 31 #include "chrome/browser/ui/search_engines/search_engine_tab_helper_delegate.h" |
| 32 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" | 32 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" |
| 33 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 33 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 34 #include "components/content_settings/core/common/content_settings.h" | 34 #include "components/content_settings/core/common/content_settings.h" |
| 35 #include "components/content_settings/core/common/content_settings_types.h" | 35 #include "components/content_settings/core/common/content_settings_types.h" |
| 36 #include "components/sessions/session_id.h" | 36 #include "components/sessions/core/session_id.h" |
| 37 #include "components/toolbar/toolbar_model.h" | 37 #include "components/toolbar/toolbar_model.h" |
| 38 #include "components/translate/content/browser/content_translate_driver.h" | 38 #include "components/translate/content/browser/content_translate_driver.h" |
| 39 #include "components/ui/zoom/zoom_observer.h" | 39 #include "components/ui/zoom/zoom_observer.h" |
| 40 #include "content/public/browser/notification_observer.h" | 40 #include "content/public/browser/notification_observer.h" |
| 41 #include "content/public/browser/notification_registrar.h" | 41 #include "content/public/browser/notification_registrar.h" |
| 42 #include "content/public/browser/page_navigator.h" | 42 #include "content/public/browser/page_navigator.h" |
| 43 #include "content/public/browser/web_contents_delegate.h" | 43 #include "content/public/browser/web_contents_delegate.h" |
| 44 #include "content/public/common/page_zoom.h" | 44 #include "content/public/common/page_zoom.h" |
| 45 #include "ui/base/page_transition_types.h" | 45 #include "ui/base/page_transition_types.h" |
| 46 #include "ui/base/ui_base_types.h" | 46 #include "ui/base/ui_base_types.h" |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 // The following factory is used for chrome update coalescing. | 983 // The following factory is used for chrome update coalescing. |
| 984 base::WeakPtrFactory<Browser> chrome_updater_factory_; | 984 base::WeakPtrFactory<Browser> chrome_updater_factory_; |
| 985 | 985 |
| 986 // The following factory is used to close the frame at a later time. | 986 // The following factory is used to close the frame at a later time. |
| 987 base::WeakPtrFactory<Browser> weak_factory_; | 987 base::WeakPtrFactory<Browser> weak_factory_; |
| 988 | 988 |
| 989 DISALLOW_COPY_AND_ASSIGN(Browser); | 989 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 990 }; | 990 }; |
| 991 | 991 |
| 992 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 992 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |