OLD | NEW |
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_BOOKMARK_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_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 "chrome/browser/ui/views/info_bubble.h" | 11 #include "chrome/browser/ui/views/info_bubble.h" |
12 #include "gfx/rect.h" | |
13 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 13 #include "ui/gfx/rect.h" |
14 #include "views/controls/button/button.h" | 14 #include "views/controls/button/button.h" |
15 #include "views/controls/combobox/combobox.h" | 15 #include "views/controls/combobox/combobox.h" |
16 #include "views/controls/link.h" | 16 #include "views/controls/link.h" |
17 #include "views/view.h" | 17 #include "views/view.h" |
18 | 18 |
19 class Profile; | 19 class Profile; |
20 | 20 |
21 class BookmarkModel; | 21 class BookmarkModel; |
22 class BookmarkNode; | 22 class BookmarkNode; |
23 | 23 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 // When the destructor is invoked should the bookmark be removed? | 153 // When the destructor is invoked should the bookmark be removed? |
154 bool remove_bookmark_; | 154 bool remove_bookmark_; |
155 | 155 |
156 // When the destructor is invoked should edits be applied? | 156 // When the destructor is invoked should edits be applied? |
157 bool apply_edits_; | 157 bool apply_edits_; |
158 | 158 |
159 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); | 159 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); |
160 }; | 160 }; |
161 | 161 |
162 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ | 162 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ |
OLD | NEW |