OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "app/combobox_model.h" | |
12 #include "chrome/browser/bookmarks/recently_used_folders_combo_model.h" | 11 #include "chrome/browser/bookmarks/recently_used_folders_combo_model.h" |
13 #include "chrome/browser/views/info_bubble.h" | 12 #include "chrome/browser/views/info_bubble.h" |
14 #include "gfx/rect.h" | 13 #include "gfx/rect.h" |
15 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
16 #include "views/controls/button/button.h" | 15 #include "views/controls/button/button.h" |
17 #include "views/controls/combobox/combobox.h" | 16 #include "views/controls/combobox/combobox.h" |
18 #include "views/controls/link.h" | 17 #include "views/controls/link.h" |
19 #include "views/view.h" | 18 #include "views/view.h" |
20 | 19 |
21 class Profile; | 20 class Profile; |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 // When the destructor is invoked should the bookmark be removed? | 154 // When the destructor is invoked should the bookmark be removed? |
156 bool remove_bookmark_; | 155 bool remove_bookmark_; |
157 | 156 |
158 // When the destructor is invoked should edits be applied? | 157 // When the destructor is invoked should edits be applied? |
159 bool apply_edits_; | 158 bool apply_edits_; |
160 | 159 |
161 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); | 160 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); |
162 }; | 161 }; |
163 | 162 |
164 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ | 163 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ |
OLD | NEW |