| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h
|
| deleted file mode 100644
|
| index f997008832a51c3b0b636e4bfec02e9b86cd40e8..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h
|
| +++ /dev/null
|
| @@ -1,61 +0,0 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -//
|
| -// A simple custom NSView for the bookmark bar used to prevent clicking and
|
| -// dragging from moving the browser window.
|
| -
|
| -#ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_VIEW_H_
|
| -#define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_VIEW_H_
|
| -
|
| -#import <Cocoa/Cocoa.h>
|
| -
|
| -#import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTweaker.h"
|
| -
|
| -@class BookmarkBarController;
|
| -@class BookmarkBarItemContainer;
|
| -@class BookmarkBarTextField;
|
| -
|
| -@interface BookmarkBarView : NSView {
|
| - @private
|
| - BOOL dropIndicatorShown_;
|
| - CGFloat dropIndicatorPosition_; // x position
|
| -
|
| - IBOutlet BookmarkBarController* controller_;
|
| - IBOutlet BookmarkBarTextField* noItemTextfield_;
|
| - IBOutlet NSButton* importBookmarksButton_;
|
| - BookmarkBarItemContainer* noItemContainer_;
|
| -}
|
| -- (BookmarkBarTextField*)noItemTextfield;
|
| -- (NSButton*)importBookmarksButton;
|
| -- (BookmarkBarController*)controller;
|
| -
|
| -@property(nonatomic, assign) IBOutlet BookmarkBarItemContainer* noItemContainer;
|
| -@end
|
| -
|
| -@interface BookmarkBarView() // TestingOrInternalAPI
|
| -@property(nonatomic, readonly) BOOL dropIndicatorShown;
|
| -@property(nonatomic, readonly) CGFloat dropIndicatorPosition;
|
| -- (void)setController:(id)controller;
|
| -@end
|
| -
|
| -
|
| -// NSTextField subclass responsible for routing -menu to the BookmarBarView.
|
| -// This is necessary when building with the 10.6 SDK because -rightMouseDown:
|
| -// does not follow the responder chain.
|
| -@interface BookmarkBarTextField : NSTextField {
|
| - @private
|
| - IBOutlet BookmarkBarView* barView_;
|
| -}
|
| -@end
|
| -
|
| -// GTMWidthBasedTweaker subclass responsible for routing -menu to the
|
| -// BookmarBarView. This is necessary when building with the 10.6 SDK because
|
| -// -rightMouseDown: does not follow the responder chain.
|
| -@interface BookmarkBarItemContainer : GTMWidthBasedTweaker {
|
| - @private
|
| - IBOutlet BookmarkBarView* barView_;
|
| -}
|
| -@end
|
| -
|
| -#endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_VIEW_H_
|
|
|