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 #include "chrome/browser/ui/browser_command_controller.h" | 5 #include "chrome/browser/ui/browser_command_controller.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 #if defined(OS_MACOSX) | 58 #if defined(OS_MACOSX) |
59 #include "chrome/browser/ui/browser_commands_mac.h" | 59 #include "chrome/browser/ui/browser_commands_mac.h" |
60 #endif | 60 #endif |
61 | 61 |
62 #if defined(OS_WIN) | 62 #if defined(OS_WIN) |
63 #include "base/win/windows_version.h" | 63 #include "base/win/windows_version.h" |
64 #include "content/public/browser/gpu_data_manager.h" | 64 #include "content/public/browser/gpu_data_manager.h" |
65 #endif | 65 #endif |
66 | 66 |
67 #if defined(USE_ASH) | 67 #if defined(USE_ASH) |
68 #include "ash/accelerators/accelerator_commands.h" | 68 #include "ash/accelerators/accelerator_commands_aura.h" |
69 #include "chrome/browser/ui/ash/ash_util.h" | 69 #include "chrome/browser/ui/ash/ash_util.h" |
70 #endif | 70 #endif |
71 | 71 |
72 #if defined(OS_CHROMEOS) | 72 #if defined(OS_CHROMEOS) |
73 #include "chrome/browser/ui/ash/multi_user/multi_user_context_menu.h" | 73 #include "chrome/browser/ui/ash/multi_user/multi_user_context_menu.h" |
74 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" | 74 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" |
75 #include "chrome/browser/ui/browser_commands_chromeos.h" | 75 #include "chrome/browser/ui/browser_commands_chromeos.h" |
76 #endif | 76 #endif |
77 | 77 |
78 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 78 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
(...skipping 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1267 | 1267 |
1268 BrowserWindow* BrowserCommandController::window() { | 1268 BrowserWindow* BrowserCommandController::window() { |
1269 return browser_->window(); | 1269 return browser_->window(); |
1270 } | 1270 } |
1271 | 1271 |
1272 Profile* BrowserCommandController::profile() { | 1272 Profile* BrowserCommandController::profile() { |
1273 return browser_->profile(); | 1273 return browser_->profile(); |
1274 } | 1274 } |
1275 | 1275 |
1276 } // namespace chrome | 1276 } // namespace chrome |
OLD | NEW |