| 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/mac_util.h" | 13 #include "base/mac_util.h" | 
| 14 #include "base/nsimage_cache_mac.h" | 14 #include "base/nsimage_cache_mac.h" | 
| 15 #include "base/singleton.h" | 15 #include "base/singleton.h" | 
| 16 #include "base/sys_string_conversions.h" | 16 #include "base/sys_string_conversions.h" | 
| 17 #include "chrome/app/chrome_dll_resource.h" | 17 #include "chrome/app/chrome_command_ids.h" | 
| 18 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" | 18 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" | 
| 19 #include "chrome/browser/browser.h" | 19 #include "chrome/browser/browser.h" | 
| 20 #include "chrome/browser/browser_window.h" | 20 #include "chrome/browser/browser_window.h" | 
| 21 #import "chrome/browser/cocoa/accelerators_cocoa.h" | 21 #import "chrome/browser/cocoa/accelerators_cocoa.h" | 
| 22 #import "chrome/browser/cocoa/back_forward_menu_controller.h" | 22 #import "chrome/browser/cocoa/back_forward_menu_controller.h" | 
| 23 #import "chrome/browser/cocoa/background_gradient_view.h" | 23 #import "chrome/browser/cocoa/background_gradient_view.h" | 
| 24 #import "chrome/browser/cocoa/encoding_menu_controller_delegate_mac.h" | 24 #import "chrome/browser/cocoa/encoding_menu_controller_delegate_mac.h" | 
| 25 #import "chrome/browser/cocoa/extensions/browser_action_button.h" | 25 #import "chrome/browser/cocoa/extensions/browser_action_button.h" | 
| 26 #import "chrome/browser/cocoa/extensions/browser_actions_container_view.h" | 26 #import "chrome/browser/cocoa/extensions/browser_actions_container_view.h" | 
| 27 #import "chrome/browser/cocoa/extensions/browser_actions_controller.h" | 27 #import "chrome/browser/cocoa/extensions/browser_actions_controller.h" | 
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 744 - (void)indicateDropURLsInView:(NSView*)view at:(NSPoint)point { | 744 - (void)indicateDropURLsInView:(NSView*)view at:(NSPoint)point { | 
| 745   // Do nothing. | 745   // Do nothing. | 
| 746 } | 746 } | 
| 747 | 747 | 
| 748 // (URLDropTargetController protocol) | 748 // (URLDropTargetController protocol) | 
| 749 - (void)hideDropURLsIndicatorInView:(NSView*)view { | 749 - (void)hideDropURLsIndicatorInView:(NSView*)view { | 
| 750   // Do nothing. | 750   // Do nothing. | 
| 751 } | 751 } | 
| 752 | 752 | 
| 753 @end | 753 @end | 
| OLD | NEW | 
|---|