| 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 24 matching lines...) Expand all Loading... |
| 35 #include "components/sessions/session_id.h" | 35 #include "components/sessions/session_id.h" |
| 36 #include "components/ui/zoom/zoom_observer.h" | 36 #include "components/ui/zoom/zoom_observer.h" |
| 37 #include "content/public/browser/notification_observer.h" | 37 #include "content/public/browser/notification_observer.h" |
| 38 #include "content/public/browser/notification_registrar.h" | 38 #include "content/public/browser/notification_registrar.h" |
| 39 #include "content/public/browser/page_navigator.h" | 39 #include "content/public/browser/page_navigator.h" |
| 40 #include "content/public/browser/web_contents_delegate.h" | 40 #include "content/public/browser/web_contents_delegate.h" |
| 41 #include "content/public/common/page_zoom.h" | 41 #include "content/public/common/page_zoom.h" |
| 42 #include "ui/base/page_transition_types.h" | 42 #include "ui/base/page_transition_types.h" |
| 43 #include "ui/base/ui_base_types.h" | 43 #include "ui/base/ui_base_types.h" |
| 44 #include "ui/base/window_open_disposition.h" | 44 #include "ui/base/window_open_disposition.h" |
| 45 #include "ui/gfx/rect.h" | 45 #include "ui/gfx/geometry/rect.h" |
| 46 #include "ui/shell_dialogs/select_file_dialog.h" | 46 #include "ui/shell_dialogs/select_file_dialog.h" |
| 47 | 47 |
| 48 #if defined(ENABLE_EXTENSIONS) | 48 #if defined(ENABLE_EXTENSIONS) |
| 49 #include "extensions/browser/extension_registry_observer.h" | 49 #include "extensions/browser/extension_registry_observer.h" |
| 50 #endif | 50 #endif |
| 51 | 51 |
| 52 class BrowserContentSettingBubbleModelDelegate; | 52 class BrowserContentSettingBubbleModelDelegate; |
| 53 class BrowserContentTranslateDriverObserver; | 53 class BrowserContentTranslateDriverObserver; |
| 54 class BrowserInstantController; | 54 class BrowserInstantController; |
| 55 class BrowserSyncedWindowDelegate; | 55 class BrowserSyncedWindowDelegate; |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 // The following factory is used for chrome update coalescing. | 969 // The following factory is used for chrome update coalescing. |
| 970 base::WeakPtrFactory<Browser> chrome_updater_factory_; | 970 base::WeakPtrFactory<Browser> chrome_updater_factory_; |
| 971 | 971 |
| 972 // The following factory is used to close the frame at a later time. | 972 // The following factory is used to close the frame at a later time. |
| 973 base::WeakPtrFactory<Browser> weak_factory_; | 973 base::WeakPtrFactory<Browser> weak_factory_; |
| 974 | 974 |
| 975 DISALLOW_COPY_AND_ASSIGN(Browser); | 975 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 976 }; | 976 }; |
| 977 | 977 |
| 978 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 978 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |