OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 | 9 |
10 #include <set> | 10 #include <set> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
14 #include "chrome/browser/browser_window.h" | 14 #include "chrome/browser/browser_window.h" |
15 #include "chrome/browser/command_updater.h" | 15 #include "chrome/browser/command_updater.h" |
16 #include "chrome/browser/extensions/extension_function_dispatcher.h" | 16 #include "chrome/browser/extensions/extension_function_dispatcher.h" |
17 #include "chrome/browser/sessions/session_id.h" | 17 #include "chrome/browser/sessions/session_id.h" |
18 #include "chrome/browser/shell_dialogs.h" | 18 #include "chrome/browser/shell_dialogs.h" |
19 #include "chrome/browser/tab_contents/tab_contents.h" | 19 #include "chrome/browser/tab_contents/tab_contents.h" |
20 #include "chrome/browser/tabs/tab_strip_model.h" | 20 #include "chrome/browser/tabs/tab_strip_model.h" |
21 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 21 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
22 #include "chrome/browser/toolbar_model.h" | 22 #include "chrome/browser/toolbar_model.h" |
23 #include "chrome/common/notification_observer.h" | 23 #include "chrome/common/notification_observer.h" |
24 #include "chrome/common/pref_member.h" | 24 #include "chrome/common/pref_member.h" |
25 #include "base/gfx/rect.h" | 25 #include "base/gfx/rect.h" |
26 #include "base/scoped_ptr.h" | 26 #include "base/scoped_ptr.h" |
27 #include "base/task.h" | 27 #include "base/task.h" |
28 #include "skia/include/SkBitmap.h" | 28 #include "third_party/skia/include/core/SkBitmap.h" |
29 | 29 |
30 class BrowserIdleTimer; | 30 class BrowserIdleTimer; |
31 class BrowserWindow; | 31 class BrowserWindow; |
32 class DebuggerWindow; | 32 class DebuggerWindow; |
33 class FindBarController; | 33 class FindBarController; |
34 class GoButton; | 34 class GoButton; |
35 class LocationBar; | 35 class LocationBar; |
36 class PrefService; | 36 class PrefService; |
37 class Profile; | 37 class Profile; |
38 class StatusBubble; | 38 class StatusBubble; |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 // The browser idle task helps cleanup unused memory resources when idle. | 757 // The browser idle task helps cleanup unused memory resources when idle. |
758 scoped_ptr<BrowserIdleTimer> idle_task_; | 758 scoped_ptr<BrowserIdleTimer> idle_task_; |
759 | 759 |
760 // Keep track of the encoding auto detect pref. | 760 // Keep track of the encoding auto detect pref. |
761 BooleanPrefMember encoding_auto_detect_; | 761 BooleanPrefMember encoding_auto_detect_; |
762 | 762 |
763 DISALLOW_COPY_AND_ASSIGN(Browser); | 763 DISALLOW_COPY_AND_ASSIGN(Browser); |
764 }; | 764 }; |
765 | 765 |
766 #endif // CHROME_BROWSER_BROWSER_H_ | 766 #endif // CHROME_BROWSER_BROWSER_H_ |
OLD | NEW |