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> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
17 #include "chrome/browser/command_updater.h" | 17 #include "chrome/browser/command_updater.h" |
18 #include "chrome/browser/debugger/devtools_toggle_action.h" | 18 #include "chrome/browser/debugger/devtools_toggle_action.h" |
19 #include "chrome/browser/pref_member.h" | 19 #include "chrome/browser/prefs/pref_member.h" |
20 #include "chrome/browser/sessions/session_id.h" | 20 #include "chrome/browser/sessions/session_id.h" |
21 #include "chrome/browser/sessions/tab_restore_service.h" | 21 #include "chrome/browser/sessions/tab_restore_service.h" |
22 #include "chrome/browser/shell_dialogs.h" | 22 #include "chrome/browser/shell_dialogs.h" |
23 #include "chrome/browser/sync/profile_sync_service_observer.h" | 23 #include "chrome/browser/sync/profile_sync_service_observer.h" |
24 #include "chrome/browser/tabs/tab_strip_model.h" | 24 #include "chrome/browser/tabs/tab_strip_model.h" |
25 #include "chrome/browser/tab_contents/page_navigator.h" | 25 #include "chrome/browser/tab_contents/page_navigator.h" |
26 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 26 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
27 #include "chrome/browser/toolbar_model.h" | 27 #include "chrome/browser/toolbar_model.h" |
28 #include "chrome/common/extensions/extension.h" | 28 #include "chrome/common/extensions/extension.h" |
29 #include "chrome/common/notification_registrar.h" | 29 #include "chrome/common/notification_registrar.h" |
(...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 mutable BooleanPrefMember use_vertical_tabs_; | 1068 mutable BooleanPrefMember use_vertical_tabs_; |
1069 | 1069 |
1070 // The profile's tab restore service. The service is owned by the profile, | 1070 // The profile's tab restore service. The service is owned by the profile, |
1071 // and we install ourselves as an observer. | 1071 // and we install ourselves as an observer. |
1072 TabRestoreService* tab_restore_service_; | 1072 TabRestoreService* tab_restore_service_; |
1073 | 1073 |
1074 DISALLOW_COPY_AND_ASSIGN(Browser); | 1074 DISALLOW_COPY_AND_ASSIGN(Browser); |
1075 }; | 1075 }; |
1076 | 1076 |
1077 #endif // CHROME_BROWSER_BROWSER_H_ | 1077 #endif // CHROME_BROWSER_BROWSER_H_ |
OLD | NEW |