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

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

Issue 2511163002: harmony: convert collected cookies dialog (Closed)
Patch Set: remove ?: Created 4 years 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
« no previous file with comments | « no previous file | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "base/macros.h" 9 #include "base/macros.h"
10 #include "components/content_settings/core/common/content_settings.h" 10 #include "components/content_settings/core/common/content_settings.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void ButtonPressed(views::Button* sender, const ui::Event& event) override; 56 void ButtonPressed(views::Button* sender, const ui::Event& event) override;
57 57
58 // views::TabbedPaneListener: 58 // views::TabbedPaneListener:
59 void TabSelectedAt(int index) override; 59 void TabSelectedAt(int index) override;
60 60
61 // views::TreeViewController: 61 // views::TreeViewController:
62 void OnTreeViewSelectionChanged(views::TreeView* tree_view) override; 62 void OnTreeViewSelectionChanged(views::TreeView* tree_view) override;
63 63
64 // views::View: 64 // views::View:
65 gfx::Size GetMinimumSize() const override; 65 gfx::Size GetMinimumSize() const override;
66 gfx::Size GetPreferredSize() const override;
66 void ViewHierarchyChanged( 67 void ViewHierarchyChanged(
67 const ViewHierarchyChangedDetails& details) override; 68 const ViewHierarchyChangedDetails& details) override;
68 69
69 private: 70 private:
70 friend class CollectedCookiesViewsTest; 71 friend class CollectedCookiesViewsTest;
71 72
72 ~CollectedCookiesViews() override; 73 ~CollectedCookiesViews() override;
73 74
74 void Init(); 75 void Init();
75 76
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 CookieInfoView* cookie_info_view_; 115 CookieInfoView* cookie_info_view_;
115 116
116 InfobarView* infobar_; 117 InfobarView* infobar_;
117 118
118 bool status_changed_; 119 bool status_changed_;
119 120
120 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); 121 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews);
121 }; 122 };
122 123
123 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ 124 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698