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

Side by Side Diff: chrome/browser/ui/views/website_settings/permission_selector_row.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_PERMISSION_SELECTOR_ROW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_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/observer_list.h" 12 #include "base/observer_list.h"
13 #include "chrome/browser/ui/page_info/permission_menu_model.h"
14 #include "chrome/browser/ui/page_info/website_settings_ui.h"
13 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h" 15 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h"
14 #include "chrome/browser/ui/website_settings/permission_menu_model.h"
15 #include "chrome/browser/ui/website_settings/website_settings_ui.h"
16 #include "components/content_settings/core/common/content_settings.h" 16 #include "components/content_settings/core/common/content_settings.h"
17 #include "components/content_settings/core/common/content_settings_types.h" 17 #include "components/content_settings/core/common/content_settings_types.h"
18 #include "ui/views/controls/button/menu_button_listener.h" 18 #include "ui/views/controls/button/menu_button_listener.h"
19 19
20 class Profile; 20 class Profile;
21 21
22 namespace internal { 22 namespace internal {
23 class ComboboxModelAdapter; 23 class ComboboxModelAdapter;
24 class PermissionCombobox; 24 class PermissionCombobox;
25 class PermissionMenuButton; 25 class PermissionMenuButton;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 views::Label* label_; 79 views::Label* label_;
80 internal::PermissionMenuButton* menu_button_; 80 internal::PermissionMenuButton* menu_button_;
81 internal::PermissionCombobox* combobox_; 81 internal::PermissionCombobox* combobox_;
82 82
83 base::ObserverList<PermissionSelectorRowObserver, false> observer_list_; 83 base::ObserverList<PermissionSelectorRowObserver, false> observer_list_;
84 84
85 DISALLOW_COPY_AND_ASSIGN(PermissionSelectorRow); 85 DISALLOW_COPY_AND_ASSIGN(PermissionSelectorRow);
86 }; 86 };
87 87
88 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_ 88 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_SELECTOR_ROW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698