Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h

Issue 869453002: Define class names for views class in c/b/ui/views (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: inline class name strings Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698