| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #import "chrome/browser/browser_theme_provider.h" | 7 #import "chrome/browser/browser_theme_provider.h" |
| 8 #import "chrome/browser/cocoa/bookmark_bar_controller.h" | 8 #import "chrome/browser/cocoa/bookmark_bar_controller.h" |
| 9 #import "chrome/browser/cocoa/bookmark_button.h" | 9 #import "chrome/browser/cocoa/bookmark_button.h" |
| 10 #import "chrome/browser/cocoa/themed_window.h" | 10 #import "chrome/browser/cocoa/themed_window.h" |
| 11 #import "third_party/mozilla/include/NSPasteboard+Utils.h" | 11 #import "third_party/mozilla/NSPasteboard+Utils.h" |
| 12 | 12 |
| 13 @interface BookmarkBarView (Private) | 13 @interface BookmarkBarView (Private) |
| 14 - (void)themeDidChangeNotification:(NSNotification*)aNotification; | 14 - (void)themeDidChangeNotification:(NSNotification*)aNotification; |
| 15 - (void)updateTheme:(ThemeProvider*)themeProvider; | 15 - (void)updateTheme:(ThemeProvider*)themeProvider; |
| 16 @end | 16 @end |
| 17 | 17 |
| 18 @implementation BookmarkBarView | 18 @implementation BookmarkBarView |
| 19 | 19 |
| 20 @synthesize dropIndicatorShown = dropIndicatorShown_; | 20 @synthesize dropIndicatorShown = dropIndicatorShown_; |
| 21 @synthesize dropIndicatorPosition = dropIndicatorPosition_; | 21 @synthesize dropIndicatorPosition = dropIndicatorPosition_; |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 return YES; | 241 return YES; |
| 242 } | 242 } |
| 243 return NO; | 243 return NO; |
| 244 } | 244 } |
| 245 | 245 |
| 246 - (void)setController:(id)controller { | 246 - (void)setController:(id)controller { |
| 247 controller_ = controller; | 247 controller_ = controller; |
| 248 } | 248 } |
| 249 | 249 |
| 250 @end // @implementation BookmarkBarView | 250 @end // @implementation BookmarkBarView |
| OLD | NEW |