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

Side by Side Diff: chrome/browser/cocoa/bookmark_bar_view.mm

Issue 3173043: Move theme files in chrome/browser/ into a themes/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 4 months 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
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/cocoa/bookmark_bar_view.h" 5 #import "chrome/browser/cocoa/bookmark_bar_view.h"
6 6
7 #include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h" 7 #include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h"
8 #import "chrome/browser/browser_theme_provider.h"
9 #import "chrome/browser/cocoa/bookmark_bar_controller.h" 8 #import "chrome/browser/cocoa/bookmark_bar_controller.h"
10 #import "chrome/browser/cocoa/bookmark_button.h" 9 #import "chrome/browser/cocoa/bookmark_button.h"
11 #import "chrome/browser/cocoa/bookmark_folder_target.h" 10 #import "chrome/browser/cocoa/bookmark_folder_target.h"
12 #import "chrome/browser/cocoa/themed_window.h" 11 #import "chrome/browser/cocoa/themed_window.h"
13 #import "chrome/browser/cocoa/view_id_util.h" 12 #import "chrome/browser/cocoa/view_id_util.h"
13 #import "chrome/browser/themes/browser_theme_provider.h"
14 #import "third_party/mozilla/NSPasteboard+Utils.h" 14 #import "third_party/mozilla/NSPasteboard+Utils.h"
15 15
16 @interface BookmarkBarView (Private) 16 @interface BookmarkBarView (Private)
17 - (void)themeDidChangeNotification:(NSNotification*)aNotification; 17 - (void)themeDidChangeNotification:(NSNotification*)aNotification;
18 - (void)updateTheme:(ThemeProvider*)themeProvider; 18 - (void)updateTheme:(ThemeProvider*)themeProvider;
19 @end 19 @end
20 20
21 @implementation BookmarkBarView 21 @implementation BookmarkBarView
22 22
23 @synthesize dropIndicatorShown = dropIndicatorShown_; 23 @synthesize dropIndicatorShown = dropIndicatorShown_;
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 248
249 - (void)setController:(id)controller { 249 - (void)setController:(id)controller {
250 controller_ = controller; 250 controller_ = controller;
251 } 251 }
252 252
253 - (ViewID)viewID { 253 - (ViewID)viewID {
254 return VIEW_ID_BOOKMARK_BAR; 254 return VIEW_ID_BOOKMARK_BAR;
255 } 255 }
256 256
257 @end // @implementation BookmarkBarView 257 @end // @implementation BookmarkBarView
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698