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

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm

Issue 5606002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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 | Annotate | Revision Log
OLDNEW
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/ui/cocoa/bookmarks/bookmark_bar_controller.h" 5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h"
6 6
7 #include "app/l10n_util_mac.h" 7 #include "app/l10n_util_mac.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "base/mac_util.h" 9 #include "base/mac_util.h"
10 #include "base/sys_string_conversions.h" 10 #include "base/sys_string_conversions.h"
11 #include "chrome/browser/bookmarks/bookmark_editor.h" 11 #include "chrome/browser/bookmarks/bookmark_editor.h"
12 #include "chrome/browser/bookmarks/bookmark_model.h" 12 #include "chrome/browser/bookmarks/bookmark_model.h"
13 #include "chrome/browser/bookmarks/bookmark_utils.h" 13 #include "chrome/browser/bookmarks/bookmark_utils.h"
14 #include "chrome/browser/metrics/user_metrics.h" 14 #include "chrome/browser/metrics/user_metrics.h"
15 #include "chrome/browser/prefs/pref_service.h" 15 #include "chrome/browser/prefs/pref_service.h"
16 #include "chrome/browser/profile.h" 16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/tab_contents/tab_contents.h" 17 #include "chrome/browser/tab_contents/tab_contents.h"
18 #include "chrome/browser/tab_contents/tab_contents_view.h" 18 #include "chrome/browser/tab_contents/tab_contents_view.h"
19 #import "chrome/browser/themes/browser_theme_provider.h" 19 #import "chrome/browser/themes/browser_theme_provider.h"
20 #include "chrome/browser/ui/browser.h" 20 #include "chrome/browser/ui/browser.h"
21 #include "chrome/browser/ui/browser_list.h" 21 #include "chrome/browser/ui/browser_list.h"
22 #import "chrome/browser/ui/cocoa/background_gradient_view.h" 22 #import "chrome/browser/ui/cocoa/background_gradient_view.h"
23 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.h" 23 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.h"
24 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" 24 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h"
25 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h" 25 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h"
26 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_toolbar_view.h" 26 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_toolbar_view.h"
(...skipping 2461 matching lines...) Expand 10 before | Expand all | Expand 10 after
2488 // to minimize touching the object passed in (likely a mock). 2488 // to minimize touching the object passed in (likely a mock).
2489 - (void)setButtonContextMenu:(id)menu { 2489 - (void)setButtonContextMenu:(id)menu {
2490 buttonContextMenu_ = menu; 2490 buttonContextMenu_ = menu;
2491 } 2491 }
2492 2492
2493 - (void)setIgnoreAnimations:(BOOL)ignore { 2493 - (void)setIgnoreAnimations:(BOOL)ignore {
2494 ignoreAnimations_ = ignore; 2494 ignoreAnimations_ = ignore;
2495 } 2495 }
2496 2496
2497 @end 2497 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698