OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_H_ |
6 #define CHROME_BROWSER_BROWSER_H_ | 6 #define CHROME_BROWSER_BROWSER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "chrome/browser/tab_contents/page_navigator.h" | 24 #include "chrome/browser/tab_contents/page_navigator.h" |
25 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 25 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
26 #include "chrome/browser/toolbar_model.h" | 26 #include "chrome/browser/toolbar_model.h" |
27 #include "chrome/common/extensions/extension.h" | 27 #include "chrome/common/extensions/extension.h" |
28 #include "chrome/common/notification_registrar.h" | 28 #include "chrome/common/notification_registrar.h" |
29 #include "chrome/common/page_transition_types.h" | 29 #include "chrome/common/page_transition_types.h" |
30 #include "chrome/common/page_zoom.h" | 30 #include "chrome/common/page_zoom.h" |
31 #include "gfx/rect.h" | 31 #include "gfx/rect.h" |
32 | 32 |
33 class BrowserWindow; | 33 class BrowserWindow; |
34 class DebuggerWindow; | |
35 class Extension; | 34 class Extension; |
36 class ExtensionShelfModel; | 35 class ExtensionShelfModel; |
37 class FindBarController; | 36 class FindBarController; |
38 class GoButton; | |
39 class LocationBar; | |
40 class PrefService; | 37 class PrefService; |
41 class Profile; | 38 class Profile; |
42 class SkBitmap; | 39 class SkBitmap; |
43 class StatusBubble; | 40 class StatusBubble; |
44 class TabNavigation; | 41 class TabNavigation; |
45 namespace gfx { | 42 namespace gfx { |
46 class Point; | 43 class Point; |
47 } | 44 } |
48 | 45 |
49 class Browser : public TabStripModelDelegate, | 46 class Browser : public TabStripModelDelegate, |
(...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1069 mutable BooleanPrefMember use_vertical_tabs_; | 1066 mutable BooleanPrefMember use_vertical_tabs_; |
1070 | 1067 |
1071 // The profile's tab restore service. The service is owned by the profile, | 1068 // The profile's tab restore service. The service is owned by the profile, |
1072 // and we install ourselves as an observer. | 1069 // and we install ourselves as an observer. |
1073 TabRestoreService* tab_restore_service_; | 1070 TabRestoreService* tab_restore_service_; |
1074 | 1071 |
1075 DISALLOW_COPY_AND_ASSIGN(Browser); | 1072 DISALLOW_COPY_AND_ASSIGN(Browser); |
1076 }; | 1073 }; |
1077 | 1074 |
1078 #endif // CHROME_BROWSER_BROWSER_H_ | 1075 #endif // CHROME_BROWSER_BROWSER_H_ |
OLD | NEW |