| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #import "chrome/browser/cocoa/toolbar_controller.h" | 5 #import "chrome/browser/cocoa/toolbar_controller.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
| 10 #include "app/l10n_util_mac.h" | 10 #include "app/l10n_util_mac.h" |
| 11 #include "app/menus/accelerator_cocoa.h" | 11 #include "app/menus/accelerator_cocoa.h" |
| 12 #include "app/menus/menu_model.h" | 12 #include "app/menus/menu_model.h" |
| 13 #include "base/keyboard_codes.h" | |
| 14 #include "base/mac_util.h" | 13 #include "base/mac_util.h" |
| 15 #include "base/nsimage_cache_mac.h" | 14 #include "base/nsimage_cache_mac.h" |
| 16 #include "base/singleton.h" | 15 #include "base/singleton.h" |
| 17 #include "base/sys_string_conversions.h" | 16 #include "base/sys_string_conversions.h" |
| 18 #include "chrome/app/chrome_dll_resource.h" | 17 #include "chrome/app/chrome_dll_resource.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" | 18 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" |
| 20 #include "chrome/browser/browser.h" | 19 #include "chrome/browser/browser.h" |
| 21 #include "chrome/browser/browser_theme_provider.h" | 20 #include "chrome/browser/browser_theme_provider.h" |
| 22 #include "chrome/browser/browser_window.h" | 21 #include "chrome/browser/browser_window.h" |
| 23 #import "chrome/browser/cocoa/accelerators_cocoa.h" | 22 #import "chrome/browser/cocoa/accelerators_cocoa.h" |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 - (void)indicateDropURLsInView:(NSView*)view at:(NSPoint)point { | 792 - (void)indicateDropURLsInView:(NSView*)view at:(NSPoint)point { |
| 794 // Do nothing. | 793 // Do nothing. |
| 795 } | 794 } |
| 796 | 795 |
| 797 // (URLDropTargetController protocol) | 796 // (URLDropTargetController protocol) |
| 798 - (void)hideDropURLsIndicatorInView:(NSView*)view { | 797 - (void)hideDropURLsIndicatorInView:(NSView*)view { |
| 799 // Do nothing. | 798 // Do nothing. |
| 800 } | 799 } |
| 801 | 800 |
| 802 @end | 801 @end |
| OLD | NEW |