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

Side by Side Diff: chrome/browser/views/options/content_settings_window_view.h

Issue 3203008: Move prefs-related files under chrome/browser/ into a prefs/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_
6 #define CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ 6 #define CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/pref_member.h" 9 #include "chrome/browser/prefs/pref_member.h"
10 #include "chrome/common/content_settings_types.h" 10 #include "chrome/common/content_settings_types.h"
11 #include "views/controls/listbox/listbox.h" 11 #include "views/controls/listbox/listbox.h"
12 #include "views/view.h" 12 #include "views/view.h"
13 #include "views/window/dialog_delegate.h" 13 #include "views/window/dialog_delegate.h"
14 14
15 class Profile; 15 class Profile;
16 class MessageLoop; 16 class MessageLoop;
17 class OptionsPageView; 17 class OptionsPageView;
18 18
19 namespace views { 19 namespace views {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 // Stores the possible content pages displayed on the right. 83 // Stores the possible content pages displayed on the right.
84 // |pages_[current_page_]| is the currently displayed page, and it's the only 84 // |pages_[current_page_]| is the currently displayed page, and it's the only
85 // parented View in |pages_|. 85 // parented View in |pages_|.
86 std::vector<View*> pages_; 86 std::vector<View*> pages_;
87 87
88 DISALLOW_COPY_AND_ASSIGN(ContentSettingsWindowView); 88 DISALLOW_COPY_AND_ASSIGN(ContentSettingsWindowView);
89 }; 89 };
90 90
91 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ 91 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_
92 92
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698