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

Side by Side Diff: chrome/browser/extensions/extension_prefs.h

Issue 10381097: Move content settings extension API to content_settings dir. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
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_EXTENSIONS_EXTENSION_PREFS_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/memory/linked_ptr.h" 13 #include "base/memory/linked_ptr.h"
14 #include "base/time.h" 14 #include "base/time.h"
15 #include "base/values.h" 15 #include "base/values.h"
16 #include "chrome/browser/extensions/extension_content_settings_store.h" 16 #include "chrome/browser/content_settings/extension_content_settings_store.h"
17 #include "chrome/browser/extensions/extension_prefs_scope.h" 17 #include "chrome/browser/extensions/extension_prefs_scope.h"
18 #include "chrome/browser/extensions/extension_scoped_prefs.h" 18 #include "chrome/browser/extensions/extension_scoped_prefs.h"
19 #include "chrome/common/extensions/extension.h" 19 #include "chrome/common/extensions/extension.h"
20 #include "chrome/common/string_ordinal.h" 20 #include "chrome/common/string_ordinal.h"
21 21
22 class ExtensionPrefValueMap; 22 class ExtensionPrefValueMap;
23 class ExtensionSorting; 23 class ExtensionSorting;
24 class PrefService; 24 class PrefService;
25 class URLPatternSet; 25 class URLPatternSet;
26 26
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 // Contains all the logic for handling the order for various extension 536 // Contains all the logic for handling the order for various extension
537 // properties. 537 // properties.
538 scoped_ptr<ExtensionSorting> extension_sorting_; 538 scoped_ptr<ExtensionSorting> extension_sorting_;
539 539
540 scoped_refptr<ExtensionContentSettingsStore> content_settings_store_; 540 scoped_refptr<ExtensionContentSettingsStore> content_settings_store_;
541 541
542 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); 542 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs);
543 }; 543 };
544 544
545 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ 545 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698