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

Unified Diff: chrome/browser/cocoa/tab_strip_view.h

Issue 466051: Mac: Make a stop-gap visual indicator for dropping URLs on the tab strip. (Closed)
Patch Set: We don't have 10 pixels, so 5 for the DCHECK(). It won't look like at cat though. Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/cocoa/tab_strip_controller.mm ('k') | chrome/browser/cocoa/tab_strip_view.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/tab_strip_view.h
diff --git a/chrome/browser/cocoa/tab_strip_view.h b/chrome/browser/cocoa/tab_strip_view.h
index 29aa0eb0f70ba2cac118e53b9ae7cc58aa2118ec..454f2a300b4f8aee812ded0da6dfd5f13238bb5d 100644
--- a/chrome/browser/cocoa/tab_strip_view.h
+++ b/chrome/browser/cocoa/tab_strip_view.h
@@ -21,9 +21,16 @@
// Weak; the following come from the nib.
NSButton* newTabButton_;
+
+ // Whether the drop-indicator arrow is shown, and if it is, the coordinate of
+ // its tip.
+ BOOL dropArrowShown_;
+ NSPoint dropArrowPosition_;
}
@property(assign, nonatomic) IBOutlet NSButton* newTabButton;
+@property(assign, nonatomic) BOOL dropArrowShown;
+@property(assign, nonatomic) NSPoint dropArrowPosition;
@end
« no previous file with comments | « chrome/browser/cocoa/tab_strip_controller.mm ('k') | chrome/browser/cocoa/tab_strip_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698