| 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> | |
| 10 | |
| 11 #include "chrome/browser/bookmarks/recently_used_folders_combo_model.h" | 9 #include "chrome/browser/bookmarks/recently_used_folders_combo_model.h" |
| 12 #include "chrome/browser/views/info_bubble.h" | 10 #include "chrome/browser/views/info_bubble.h" |
| 13 #include "gfx/rect.h" | 11 #include "gfx/rect.h" |
| 14 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 15 #include "views/controls/button/button.h" | 13 #include "views/controls/button/button.h" |
| 16 #include "views/controls/combobox/combobox.h" | 14 #include "views/controls/combobox/combobox.h" |
| 17 #include "views/controls/link.h" | 15 #include "views/controls/link.h" |
| 18 #include "views/view.h" | 16 #include "views/view.h" |
| 19 | 17 |
| 20 class Profile; | 18 class Profile; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // When the destructor is invoked should the bookmark be removed? | 152 // When the destructor is invoked should the bookmark be removed? |
| 155 bool remove_bookmark_; | 153 bool remove_bookmark_; |
| 156 | 154 |
| 157 // When the destructor is invoked should edits be applied? | 155 // When the destructor is invoked should edits be applied? |
| 158 bool apply_edits_; | 156 bool apply_edits_; |
| 159 | 157 |
| 160 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); | 158 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); |
| 161 }; | 159 }; |
| 162 | 160 |
| 163 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ | 161 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_BUBBLE_VIEW_H_ |
| OLD | NEW |