Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: chrome/browser/ui/browser_command_controller.cc

Issue 2272173002: Fix most chrome/browser/ui "gn check" problems. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #if defined(OS_MACOSX) 59 #if defined(OS_MACOSX)
60 #include "chrome/browser/ui/browser_commands_mac.h" 60 #include "chrome/browser/ui/browser_commands_mac.h"
61 #endif 61 #endif
62 62
63 #if defined(OS_WIN) 63 #if defined(OS_WIN)
64 #include "base/win/windows_version.h" 64 #include "base/win/windows_version.h"
65 #include "content/public/browser/gpu_data_manager.h" 65 #include "content/public/browser/gpu_data_manager.h"
66 #endif 66 #endif
67 67
68 #if defined(USE_ASH) 68 #if defined(USE_ASH)
69 #include "ash/accelerators/accelerator_commands_aura.h" 69 #include "ash/accelerators/accelerator_commands_aura.h" // nogncheck
70 #include "chrome/browser/ui/ash/ash_util.h" 70 #include "chrome/browser/ui/ash/ash_util.h" // nogncheck
71 #endif 71 #endif
72 72
73 #if defined(OS_CHROMEOS) 73 #if defined(OS_CHROMEOS)
74 #include "chrome/browser/ui/ash/multi_user/multi_user_context_menu.h" 74 #include "chrome/browser/ui/ash/multi_user/multi_user_context_menu.h"
75 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" 75 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h"
76 #include "chrome/browser/ui/browser_commands_chromeos.h" 76 #include "chrome/browser/ui/browser_commands_chromeos.h"
77 #endif 77 #endif
78 78
79 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 79 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
80 #include "ui/base/ime/linux/text_edit_key_bindings_delegate_auralinux.h" 80 #include "ui/base/ime/linux/text_edit_key_bindings_delegate_auralinux.h"
(...skipping 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after
1264 1264
1265 BrowserWindow* BrowserCommandController::window() { 1265 BrowserWindow* BrowserCommandController::window() {
1266 return browser_->window(); 1266 return browser_->window();
1267 } 1267 }
1268 1268
1269 Profile* BrowserCommandController::profile() { 1269 Profile* BrowserCommandController::profile() {
1270 return browser_->profile(); 1270 return browser_->profile();
1271 } 1271 }
1272 1272
1273 } // namespace chrome 1273 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698