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

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

Issue 9949033: Removed access to prefs that does not work on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix bad ifdef Created 8 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 | « build/common.gypi ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl.h
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
index 0e3ad6b6ba55df6fae7666cb13601c91c76176a9..502d257a9e86bdcd740737a23a83a1f81f10a3e4 100644
--- a/chrome/browser/profiles/profile_impl.h
+++ b/chrome/browser/profiles/profile_impl.h
@@ -25,10 +25,13 @@ class ExtensionNavigationObserver;
class ExtensionSystem;
class NetPrefObserver;
class PrefService;
-class PromoResourceService;
class SSLConfigServiceManager;
class VisitedLinkEventListener;
+#if defined(ENABLE_PROMO_RESOURCE_SERVICE)
+class PromoResourceService;
+#endif
+
#if defined(OS_CHROMEOS)
namespace chromeos {
class EnterpriseExtensionObserver;
@@ -197,7 +200,11 @@ class ProfileImpl : public Profile,
extension_special_storage_policy_;
scoped_ptr<NetPrefObserver> net_pref_observer_;
scoped_ptr<BookmarkModel> bookmark_bar_model_;
+
+#if defined(ENABLE_PROMO_RESOURCE_SERVICE)
scoped_refptr<PromoResourceService> promo_resource_service_;
+#endif
+
scoped_refptr<ProtocolHandlerRegistry> protocol_handler_registry_;
scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_;
« no previous file with comments | « build/common.gypi ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698