Home
last modified time | relevance | path

Searched refs:UserScriptMaster (Results 1 – 10 of 10) sorted by relevance

/external/chromium/chrome/browser/extensions/
Duser_script_master.h26 class UserScriptMaster : public base::RefCountedThreadSafe<UserScriptMaster>,
31 explicit UserScriptMaster(const FilePath& script_dir, Profile* profile);
52 friend class base::RefCountedThreadSafe<UserScriptMaster>;
54 virtual ~UserScriptMaster();
72 : public base::RefCountedThreadSafe<UserScriptMaster::ScriptReloader> {
81 explicit ScriptReloader(UserScriptMaster* master);
94 friend class base::RefCountedThreadSafe<UserScriptMaster::ScriptReloader>;
117 UserScriptMaster* master_;
159 DISALLOW_COPY_AND_ASSIGN(UserScriptMaster);
Duser_script_master_unittest.cc76 scoped_refptr<UserScriptMaster> master(new UserScriptMaster(temp_dir_.path(), in TEST_F()
94 scoped_refptr<UserScriptMaster> master(new UserScriptMaster(temp_dir_.path(), in TEST_F()
123 EXPECT_TRUE(UserScriptMaster::ScriptReloader::ParseMetadataHeader( in TEST_F()
135 EXPECT_TRUE(UserScriptMaster::ScriptReloader::ParseMetadataHeader( in TEST_F()
148 UserScriptMaster::ScriptReloader::ParseMetadataHeader(text, &script); in TEST_F()
161 EXPECT_TRUE(UserScriptMaster::ScriptReloader::ParseMetadataHeader( in TEST_F()
179 EXPECT_FALSE(UserScriptMaster::ScriptReloader::ParseMetadataHeader( in TEST_F()
192 EXPECT_TRUE(UserScriptMaster::ScriptReloader::ParseMetadataHeader( in TEST_F()
206 EXPECT_TRUE(UserScriptMaster::ScriptReloader::ParseMetadataHeader( in TEST_F()
226 UserScriptMaster::ScriptReloader::LoadScriptsFromDirectory( in TEST_F()
[all …]
Duser_script_master.cc45 UserScriptMaster::ScriptReloader::ScriptReloader(UserScriptMaster* master) in ScriptReloader()
51 bool UserScriptMaster::ScriptReloader::ParseMetadataHeader( in ParseMetadataHeader()
135 void UserScriptMaster::ScriptReloader::StartScan( in StartScan()
143 this, &UserScriptMaster::ScriptReloader::RunScan, script_dir, in StartScan()
147 void UserScriptMaster::ScriptReloader::NotifyMaster( in NotifyMaster()
181 void UserScriptMaster::ScriptReloader::LoadScriptsFromDirectory( in LoadScriptsFromDirectory()
269 void UserScriptMaster::ScriptReloader::RunScan( in RunScan()
293 UserScriptMaster::UserScriptMaster(const FilePath& script_dir, Profile* profile) in UserScriptMaster() function in UserScriptMaster
308 UserScriptMaster::~UserScriptMaster() { in ~UserScriptMaster()
313 void UserScriptMaster::NewScriptsAvailable(base::SharedMemory* handle) { in NewScriptsAvailable()
[all …]
Dextension_startup_browsertest.cc93 UserScriptMaster* master = browser()->profile()->GetUserScriptMaster(); in WaitForServicesToStart()
Dconvert_user_script.cc43 if (!UserScriptMaster::ScriptReloader::ParseMetadataHeader(content, in ConvertUserScriptToExtension()
/external/chromium/chrome/browser/profiles/
Dprofile.h110 class UserScriptMaster; variable
240 virtual UserScriptMaster* GetUserScriptMaster() = 0;
Dprofile_impl.h59 virtual UserScriptMaster* GetUserScriptMaster();
205 scoped_refptr<UserScriptMaster> user_script_master_;
Dprofile.cc276 virtual UserScriptMaster* GetUserScriptMaster() { in GetUserScriptMaster()
Dprofile_impl.cc423 user_script_master_ = new UserScriptMaster(script_dir, this); in InitExtensions()
748 UserScriptMaster* ProfileImpl::GetUserScriptMaster() { in GetUserScriptMaster()
/external/chromium/android/autofill/
Dprofile_android.h113 class UserScriptMaster; variable
148 virtual UserScriptMaster* GetUserScriptMaster() { NOTREACHED(); return NULL; } in GetUserScriptMaster()