OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 scoped_ptr<BookmarkBubbleDelegate> delegate, | 70 scoped_ptr<BookmarkBubbleDelegate> delegate, |
71 Profile* profile, | 71 Profile* profile, |
72 const GURL& url, | 72 const GURL& url, |
73 bool newly_bookmarked); | 73 bool newly_bookmarked); |
74 | 74 |
75 // Returns the title to display. | 75 // Returns the title to display. |
76 string16 GetTitle(); | 76 string16 GetTitle(); |
77 | 77 |
78 // Overridden from views::View: | 78 // Overridden from views::View: |
79 virtual gfx::Size GetMinimumSize() OVERRIDE; | 79 virtual gfx::Size GetMinimumSize() OVERRIDE; |
| 80 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
80 | 81 |
81 // Overridden from views::ButtonListener: | 82 // Overridden from views::ButtonListener: |
82 // Closes the bubble or opens the edit dialog. | 83 // Closes the bubble or opens the edit dialog. |
83 virtual void ButtonPressed(views::Button* sender, | 84 virtual void ButtonPressed(views::Button* sender, |
84 const ui::Event& event) OVERRIDE; | 85 const ui::Event& event) OVERRIDE; |
85 | 86 |
86 // Overridden from views::ComboboxListener: | 87 // Overridden from views::ComboboxListener: |
87 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; | 88 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; |
88 | 89 |
89 // Handle the message when the user presses a button. | 90 // Handle the message when the user presses a button. |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 // When the destructor is invoked should the bookmark be removed? | 138 // When the destructor is invoked should the bookmark be removed? |
138 bool remove_bookmark_; | 139 bool remove_bookmark_; |
139 | 140 |
140 // When the destructor is invoked should edits be applied? | 141 // When the destructor is invoked should edits be applied? |
141 bool apply_edits_; | 142 bool apply_edits_; |
142 | 143 |
143 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); | 144 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); |
144 }; | 145 }; |
145 | 146 |
146 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_ | 147 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_ |
OLD | NEW |