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

Side by Side Diff: chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h

Issue 8566052: views: Delete bubble, events, focus, layout directories and its stubbed files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win Created 9 years, 1 month 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 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/string16.h" 9 #include "base/string16.h"
10 #include "chrome/browser/bookmarks/recently_used_folders_combo_model.h" 10 #include "chrome/browser/bookmarks/recently_used_folders_combo_model.h"
11 #include "googleurl/src/gurl.h" 11 #include "googleurl/src/gurl.h"
12 #include "views/bubble/bubble_delegate.h" 12 #include "ui/views/bubble/bubble_delegate.h"
13 #include "views/controls/button/button.h" 13 #include "views/controls/button/button.h"
14 #include "views/controls/combobox/combobox.h" 14 #include "views/controls/combobox/combobox.h"
15 #include "views/controls/link_listener.h" 15 #include "views/controls/link_listener.h"
16 16
17 class Profile; 17 class Profile;
18 18
19 namespace views { 19 namespace views {
20 class TextButton; 20 class TextButton;
21 class Textfield; 21 class Textfield;
22 } 22 }
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 // When the destructor is invoked should the bookmark be removed? 124 // When the destructor is invoked should the bookmark be removed?
125 bool remove_bookmark_; 125 bool remove_bookmark_;
126 126
127 // When the destructor is invoked should edits be applied? 127 // When the destructor is invoked should edits be applied?
128 bool apply_edits_; 128 bool apply_edits_;
129 129
130 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); 130 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView);
131 }; 131 };
132 132
133 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_ 133 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698