| 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 24 matching lines...) Expand all Loading... |
| 35 #include "chrome/browser/ui/browser_window.h" | 35 #include "chrome/browser/ui/browser_window.h" |
| 36 #include "chrome/browser/ui/chrome_pages.h" | 36 #include "chrome/browser/ui/chrome_pages.h" |
| 37 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 37 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 38 #include "chrome/browser/ui/tabs/tab_strip_model_utils.h" | 38 #include "chrome/browser/ui/tabs/tab_strip_model_utils.h" |
| 39 #include "chrome/browser/ui/webui/inspect_ui.h" | 39 #include "chrome/browser/ui/webui/inspect_ui.h" |
| 40 #include "chrome/common/chrome_features.h" | 40 #include "chrome/common/chrome_features.h" |
| 41 #include "chrome/common/content_restriction.h" | 41 #include "chrome/common/content_restriction.h" |
| 42 #include "chrome/common/pref_names.h" | 42 #include "chrome/common/pref_names.h" |
| 43 #include "chrome/common/profiling.h" | 43 #include "chrome/common/profiling.h" |
| 44 #include "components/bookmarks/common/bookmark_pref_names.h" | 44 #include "components/bookmarks/common/bookmark_pref_names.h" |
| 45 #include "components/browser_sync/browser/profile_sync_service.h" | 45 #include "components/browser_sync/profile_sync_service.h" |
| 46 #include "components/dom_distiller/core/dom_distiller_switches.h" | 46 #include "components/dom_distiller/core/dom_distiller_switches.h" |
| 47 #include "components/prefs/pref_service.h" | 47 #include "components/prefs/pref_service.h" |
| 48 #include "components/sessions/core/tab_restore_service.h" | 48 #include "components/sessions/core/tab_restore_service.h" |
| 49 #include "components/signin/core/common/signin_pref_names.h" | 49 #include "components/signin/core/common/signin_pref_names.h" |
| 50 #include "content/public/browser/native_web_keyboard_event.h" | 50 #include "content/public/browser/native_web_keyboard_event.h" |
| 51 #include "content/public/browser/navigation_controller.h" | 51 #include "content/public/browser/navigation_controller.h" |
| 52 #include "content/public/browser/navigation_entry.h" | 52 #include "content/public/browser/navigation_entry.h" |
| 53 #include "content/public/browser/user_metrics.h" | 53 #include "content/public/browser/user_metrics.h" |
| 54 #include "content/public/browser/web_contents.h" | 54 #include "content/public/browser/web_contents.h" |
| 55 #include "content/public/browser/web_contents_observer.h" | 55 #include "content/public/browser/web_contents_observer.h" |
| (...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1172 | 1172 |
| 1173 BrowserWindow* BrowserCommandController::window() { | 1173 BrowserWindow* BrowserCommandController::window() { |
| 1174 return browser_->window(); | 1174 return browser_->window(); |
| 1175 } | 1175 } |
| 1176 | 1176 |
| 1177 Profile* BrowserCommandController::profile() { | 1177 Profile* BrowserCommandController::profile() { |
| 1178 return browser_->profile(); | 1178 return browser_->profile(); |
| 1179 } | 1179 } |
| 1180 | 1180 |
| 1181 } // namespace chrome | 1181 } // namespace chrome |
| OLD | NEW |