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

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

Issue 10696176: Move UserScript and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master for cq Created 8 years, 5 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/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile.h
diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h
index 496737f9927bbd1764b2f0045e038e8e0a289ba6..7c73363b606c8831efe8d4714eab91f0b984b94b 100644
--- a/chrome/browser/profiles/profile.h
+++ b/chrome/browser/profiles/profile.h
@@ -32,7 +32,6 @@ class PrefService;
class PromoCounter;
class ProtocolHandlerRegistry;
class TestingProfile;
-class UserScriptMaster;
class VisitedLinkMaster;
class WebDataService;
@@ -53,11 +52,14 @@ class LibCrosServiceLibraryImpl;
class ResetDefaultProxyConfigServiceTask;
}
-
namespace content {
class WebUI;
}
+namespace extensions {
+class UserScriptMaster;
+}
+
namespace fileapi {
class FileSystemContext;
}
@@ -193,11 +195,11 @@ class Profile : public content::BrowserContext {
virtual ExtensionService* GetExtensionService() = 0;
// DEPRECATED. Instead, use ExtensionSystem::user_script_master().
- // Retrieves a pointer to the UserScriptMaster associated with this
- // profile. The UserScriptMaster is lazily created the first time
- // that this method is called.
+ // Retrieves a pointer to the extensions::UserScriptMaster associated with
+ // this profile. The extensions::UserScriptMaster is lazily created the first
+ // time that this method is called.
// TODO(yoz): remove this accessor (bug 104095).
- virtual UserScriptMaster* GetUserScriptMaster() = 0;
+ virtual extensions::UserScriptMaster* GetUserScriptMaster() = 0;
// DEPRECATED. Instead, use ExtensionSystem::process_manager().
// Retrieves a pointer to the ExtensionProcessManager associated with this
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698