| 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/views/frame/browser_view.h" |     5 #include "chrome/browser/ui/views/frame/browser_view.h" | 
|     6  |     6  | 
|     7 #include <algorithm> |     7 #include <algorithm> | 
|     8  |     8  | 
|     9 #include "base/auto_reset.h" |     9 #include "base/auto_reset.h" | 
|    10 #include "base/command_line.h" |    10 #include "base/command_line.h" | 
|    11 #include "base/i18n/rtl.h" |    11 #include "base/i18n/rtl.h" | 
|    12 #include "base/metrics/histogram.h" |    12 #include "base/metrics/histogram.h" | 
|    13 #include "base/string_number_conversions.h" |    13 #include "base/string_number_conversions.h" | 
|    14 #include "base/utf_string_conversions.h" |    14 #include "base/utf_string_conversions.h" | 
|    15 #include "chrome/app/chrome_command_ids.h" |    15 #include "chrome/app/chrome_command_ids.h" | 
|    16 #include "chrome/app/chrome_dll_resource.h" |    16 #include "chrome/app/chrome_dll_resource.h" | 
|    17 #include "chrome/browser/bookmarks/bookmark_utils.h" |    17 #include "chrome/browser/bookmarks/bookmark_utils.h" | 
|    18 #include "chrome/browser/browser_process.h" |    18 #include "chrome/browser/browser_process.h" | 
|    19 #include "chrome/browser/debugger/devtools_window.h" |    19 #include "chrome/browser/debugger/devtools_window.h" | 
|    20 #include "chrome/browser/extensions/tab_helper.h" |    20 #include "chrome/browser/extensions/tab_helper.h" | 
|    21 #include "chrome/browser/instant/instant_controller.h" |  | 
|    22 #include "chrome/browser/managed_mode.h" |    21 #include "chrome/browser/managed_mode.h" | 
|    23 #include "chrome/browser/native_window_notification_source.h" |    22 #include "chrome/browser/native_window_notification_source.h" | 
|    24 #include "chrome/browser/ntp_background_util.h" |    23 #include "chrome/browser/ntp_background_util.h" | 
|    25 #include "chrome/browser/prefs/pref_service.h" |    24 #include "chrome/browser/prefs/pref_service.h" | 
|    26 #include "chrome/browser/profiles/avatar_menu_model.h" |    25 #include "chrome/browser/profiles/avatar_menu_model.h" | 
|    27 #include "chrome/browser/profiles/profile.h" |    26 #include "chrome/browser/profiles/profile.h" | 
|    28 #include "chrome/browser/profiles/profile_info_cache.h" |    27 #include "chrome/browser/profiles/profile_info_cache.h" | 
|    29 #include "chrome/browser/profiles/profile_manager.h" |    28 #include "chrome/browser/profiles/profile_manager.h" | 
|    30 #include "chrome/browser/sessions/tab_restore_service.h" |    29 #include "chrome/browser/sessions/tab_restore_service.h" | 
|    31 #include "chrome/browser/sessions/tab_restore_service_factory.h" |    30 #include "chrome/browser/sessions/tab_restore_service_factory.h" | 
| (...skipping 2570 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  2602   if (contents && contents->GetContentNativeView() && |  2601   if (contents && contents->GetContentNativeView() && | 
|  2603       contents->GetContentNativeView()->HasFocus()) { |  2602       contents->GetContentNativeView()->HasFocus()) { | 
|  2604     (contents->GetRenderViewHost()->*method)(); |  2603     (contents->GetRenderViewHost()->*method)(); | 
|  2605     return true; |  2604     return true; | 
|  2606   } |  2605   } | 
|  2607 #elif defined(OS_WIN) |  2606 #elif defined(OS_WIN) | 
|  2608   // TODO(yusukes): Support non-Aura Windows. |  2607   // TODO(yusukes): Support non-Aura Windows. | 
|  2609 #endif |  2608 #endif | 
|  2610   return false; |  2609   return false; | 
|  2611 } |  2610 } | 
| OLD | NEW |