| 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_COMMAND_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/prefs/pref_change_registrar.h" | |
| 12 #include "base/prefs/pref_member.h" | |
| 13 #include "chrome/browser/command_updater.h" | 11 #include "chrome/browser/command_updater.h" |
| 14 #include "chrome/browser/command_updater_delegate.h" | 12 #include "chrome/browser/command_updater_delegate.h" |
| 15 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 13 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 14 #include "components/prefs/pref_change_registrar.h" |
| 15 #include "components/prefs/pref_member.h" |
| 16 #include "components/sessions/core/tab_restore_service_observer.h" | 16 #include "components/sessions/core/tab_restore_service_observer.h" |
| 17 #include "ui/base/window_open_disposition.h" | 17 #include "ui/base/window_open_disposition.h" |
| 18 | 18 |
| 19 class Browser; | 19 class Browser; |
| 20 class BrowserWindow; | 20 class BrowserWindow; |
| 21 class Profile; | 21 class Profile; |
| 22 | 22 |
| 23 namespace content { | 23 namespace content { |
| 24 struct NativeWebKeyboardEvent; | 24 struct NativeWebKeyboardEvent; |
| 25 } | 25 } |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 PrefChangeRegistrar profile_pref_registrar_; | 191 PrefChangeRegistrar profile_pref_registrar_; |
| 192 PrefChangeRegistrar local_pref_registrar_; | 192 PrefChangeRegistrar local_pref_registrar_; |
| 193 BooleanPrefMember pref_signin_allowed_; | 193 BooleanPrefMember pref_signin_allowed_; |
| 194 | 194 |
| 195 DISALLOW_COPY_AND_ASSIGN(BrowserCommandController); | 195 DISALLOW_COPY_AND_ASSIGN(BrowserCommandController); |
| 196 }; | 196 }; |
| 197 | 197 |
| 198 } // namespace chrome | 198 } // namespace chrome |
| 199 | 199 |
| 200 #endif // CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ | 200 #endif // CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ |
| OLD | NEW |