| 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
|
|
|