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

Side by Side Diff: chrome/browser/ui/views/website_settings/website_settings_popup_view.h

Issue 2744823004: Move cross-platform Page Info UI code to its own folder. (Closed)
Patch Set: Update test build file with changes not caught by mass-rename.py Created 3 years, 9 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_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "chrome/browser/ui/page_info/website_settings_ui.h"
13 #include "chrome/browser/ui/views/website_settings/chosen_object_row_observer.h" 14 #include "chrome/browser/ui/views/website_settings/chosen_object_row_observer.h"
14 #include "chrome/browser/ui/views/website_settings/permission_selector_row.h" 15 #include "chrome/browser/ui/views/website_settings/permission_selector_row.h"
15 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h" 16 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h"
16 #include "chrome/browser/ui/website_settings/website_settings_ui.h"
17 #include "content/public/browser/web_contents_observer.h" 17 #include "content/public/browser/web_contents_observer.h"
18 #include "ui/views/bubble/bubble_dialog_delegate.h" 18 #include "ui/views/bubble/bubble_dialog_delegate.h"
19 #include "ui/views/controls/button/button.h" 19 #include "ui/views/controls/button/button.h"
20 #include "ui/views/controls/link_listener.h" 20 #include "ui/views/controls/link_listener.h"
21 #include "ui/views/controls/separator.h" 21 #include "ui/views/controls/separator.h"
22 #include "ui/views/controls/styled_label_listener.h" 22 #include "ui/views/controls/styled_label_listener.h"
23 23
24 class GURL; 24 class GURL;
25 class PopupHeaderView; 25 class PopupHeaderView;
26 class Profile; 26 class Profile;
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 // permissions section, and keep those views updated when the underlying 177 // permissions section, and keep those views updated when the underlying
178 // |Permission| changes. 178 // |Permission| changes.
179 std::vector<std::unique_ptr<PermissionSelectorRow>> selector_rows_; 179 std::vector<std::unique_ptr<PermissionSelectorRow>> selector_rows_;
180 180
181 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_; 181 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_;
182 182
183 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); 183 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView);
184 }; 184 };
185 185
186 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_ 186 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698