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

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_button.h

Issue 12036003: Move window_open_disposition.h from webkit/ into ui/base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win Created 7 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 #include <vector> 6 #include <vector>
7 #import "chrome/browser/ui/cocoa/draggable_button.h" 7 #import "chrome/browser/ui/cocoa/draggable_button.h"
8 #include "webkit/glue/window_open_disposition.h" 8 #include "ui/base/window_open_disposition.h"
9 9
10 @class BookmarkBarFolderController; 10 @class BookmarkBarFolderController;
11 @class BookmarkButton; 11 @class BookmarkButton;
12 struct BookmarkNodeData; 12 struct BookmarkNodeData;
13 class BookmarkModel; 13 class BookmarkModel;
14 class BookmarkNode; 14 class BookmarkNode;
15 @class BrowserWindowController; 15 @class BrowserWindowController;
16 16
17 namespace ui { 17 namespace ui {
18 class ThemeProvider; 18 class ThemeProvider;
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 259
260 // Key for userInfo dict of a kPulseBookmarkButtonNotification. 260 // Key for userInfo dict of a kPulseBookmarkButtonNotification.
261 // Value is a [NSValue valueWithPointer:]; pointer is a (const BookmarkNode*). 261 // Value is a [NSValue valueWithPointer:]; pointer is a (const BookmarkNode*).
262 extern NSString* const kBookmarkKey; 262 extern NSString* const kBookmarkKey;
263 263
264 // Key for userInfo dict of a kPulseBookmarkButtonNotification. 264 // Key for userInfo dict of a kPulseBookmarkButtonNotification.
265 // Value is a [NSNumber numberWithBool:] to turn pulsing on or off. 265 // Value is a [NSNumber numberWithBool:] to turn pulsing on or off.
266 extern NSString* const kBookmarkPulseFlagKey; 266 extern NSString* const kBookmarkPulseFlagKey;
267 267
268 }; 268 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698