| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_CONTROLLER_H__ | 5 #ifndef CHROME_BROWSER_CONTROLLER_H__ |
| 6 #define CHROME_BROWSER_CONTROLLER_H__ | 6 #define CHROME_BROWSER_CONTROLLER_H__ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 // This is a map of command IDs to states and observer lists | 163 // This is a map of command IDs to states and observer lists |
| 164 CommandMap commands_; | 164 CommandMap commands_; |
| 165 | 165 |
| 166 // vector of ButtonController for managed buttons | 166 // vector of ButtonController for managed buttons |
| 167 std::vector<ButtonController*> managed_button_controllers_; | 167 std::vector<ButtonController*> managed_button_controllers_; |
| 168 | 168 |
| 169 CommandController(); | 169 CommandController(); |
| 170 DISALLOW_EVIL_CONSTRUCTORS(CommandController); | 170 DISALLOW_EVIL_CONSTRUCTORS(CommandController); |
| 171 }; | 171 }; |
| 172 | 172 |
| 173 // Stupid global for the temporary 3d hack. This indicates whether the browser |
| 174 // should be in 3D mode. |
| 175 extern bool g_threedee_enabled; |
| 176 |
| 173 #endif // CHROME_BROWSER_CONTROLLER_H__ | 177 #endif // CHROME_BROWSER_CONTROLLER_H__ |
| OLD | NEW |