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 28 matching lines...) Expand all Loading... |
39 Profile* profile, | 39 Profile* profile, |
40 const GURL& url, | 40 const GURL& url, |
41 bool newly_bookmarked); | 41 bool newly_bookmarked); |
42 | 42 |
43 static bool IsShowing(); | 43 static bool IsShowing(); |
44 | 44 |
45 static void Hide(); | 45 static void Hide(); |
46 | 46 |
47 ~BookmarkBubbleView() override; | 47 ~BookmarkBubbleView() override; |
48 | 48 |
49 // views::BubbleDelegateView method. | 49 // views::BubbleDelegateView: |
50 views::View* GetInitiallyFocusedView() override; | 50 views::View* GetInitiallyFocusedView() override; |
51 | 51 |
52 // views::WidgetDelegate method. | 52 // views::WidgetDelegate: |
53 void WindowClosing() override; | 53 void WindowClosing() override; |
54 | 54 |
55 // views::View method. | 55 // views::View: |
56 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; | 56 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; |
| 57 const char* GetClassName() const override; |
57 | 58 |
58 protected: | 59 protected: |
59 // views::BubbleDelegateView method. | 60 // views::BubbleDelegateView method. |
60 void Init() override; | 61 void Init() override; |
61 | 62 |
62 private: | 63 private: |
63 friend class BookmarkBubbleViewTest; | 64 friend class BookmarkBubbleViewTest; |
64 FRIEND_TEST_ALL_PREFIXES(BookmarkBubbleViewTest, SyncPromoSignedIn); | 65 FRIEND_TEST_ALL_PREFIXES(BookmarkBubbleViewTest, SyncPromoSignedIn); |
65 FRIEND_TEST_ALL_PREFIXES(BookmarkBubbleViewTest, SyncPromoNotSignedIn); | 66 FRIEND_TEST_ALL_PREFIXES(BookmarkBubbleViewTest, SyncPromoNotSignedIn); |
66 | 67 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 // When the destructor is invoked should the bookmark be removed? | 137 // When the destructor is invoked should the bookmark be removed? |
137 bool remove_bookmark_; | 138 bool remove_bookmark_; |
138 | 139 |
139 // When the destructor is invoked should edits be applied? | 140 // When the destructor is invoked should edits be applied? |
140 bool apply_edits_; | 141 bool apply_edits_; |
141 | 142 |
142 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); | 143 DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleView); |
143 }; | 144 }; |
144 | 145 |
145 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_ | 146 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BUBBLE_VIEW_H_ |
OLD | NEW |