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

Side by Side Diff: chrome/browser/ui/views/collected_cookies_views.h

Issue 273223002: views: Make view::Views::GetPreferredSize() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More compile fix for ToT Created 6 years, 7 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 | Annotate | Revision Log
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_COLLECTED_COOKIES_VIEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/common/content_settings.h" 9 #include "chrome/common/content_settings.h"
10 #include "content/public/browser/notification_observer.h" 10 #include "content/public/browser/notification_observer.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 virtual void ButtonPressed(views::Button* sender, 57 virtual void ButtonPressed(views::Button* sender,
58 const ui::Event& event) OVERRIDE; 58 const ui::Event& event) OVERRIDE;
59 59
60 // views::TabbedPaneListener: 60 // views::TabbedPaneListener:
61 virtual void TabSelectedAt(int index) OVERRIDE; 61 virtual void TabSelectedAt(int index) OVERRIDE;
62 62
63 // views::TreeViewController: 63 // views::TreeViewController:
64 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE; 64 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE;
65 65
66 // views::View: 66 // views::View:
67 virtual gfx::Size GetMinimumSize() OVERRIDE; 67 virtual gfx::Size GetMinimumSize() const OVERRIDE;
68 virtual void ViewHierarchyChanged( 68 virtual void ViewHierarchyChanged(
69 const ViewHierarchyChangedDetails& details) OVERRIDE; 69 const ViewHierarchyChangedDetails& details) OVERRIDE;
70 70
71 private: 71 private:
72 virtual ~CollectedCookiesViews(); 72 virtual ~CollectedCookiesViews();
73 73
74 void Init(); 74 void Init();
75 75
76 views::View* CreateAllowedPane(); 76 views::View* CreateAllowedPane();
77 77
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 CookieInfoView* cookie_info_view_; 116 CookieInfoView* cookie_info_view_;
117 117
118 InfobarView* infobar_; 118 InfobarView* infobar_;
119 119
120 bool status_changed_; 120 bool status_changed_;
121 121
122 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); 122 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews);
123 }; 123 };
124 124
125 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ 125 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc ('k') | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698