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

Unified Diff: chrome/browser/profiles/profile_impl.cc

Issue 6927028: TODO (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index f5fa56117b86854e9cabeb5c59c1862a4a651bbf..4463971358f9d45a42b5a46f63455ccaddbfcf7f 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -25,6 +25,7 @@
#include "chrome/browser/custom_handlers/protocol_handler_registry.h"
#include "chrome/browser/defaults.h"
#include "chrome/browser/download/download_manager.h"
+#include "chrome/browser/extensions/extension_content_settings_store.h"
#include "chrome/browser/extensions/extension_devtools_manager.h"
#include "chrome/browser/extensions/extension_error_reporter.h"
#include "chrome/browser/extensions/extension_event_router.h"
@@ -1273,6 +1274,13 @@ ExtensionPrefValueMap* ProfileImpl::GetExtensionPrefValueMap() {
return extension_pref_value_map_.get();
}
+ExtensionContentSettingsStore* ProfileImpl::GetExtensionContentSettingsStore() {
+ if (!extension_content_settings_store_.get())
+ extension_content_settings_store_.reset(
+ new ExtensionContentSettingsStore());
+ return extension_content_settings_store_.get();
+}
+
WebKitContext* ProfileImpl::GetWebKitContext() {
if (!webkit_context_.get()) {
webkit_context_ = new WebKitContext(
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698