OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UserScriptMaster
(Results
1 - 10
of
10
) sorted by null
/external/chromium/chrome/browser/extensions/
user_script_master.h
26
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
);
[
all
...]
user_script_master_unittest.cc
39
//
UserScriptMaster
posts tasks to the file thread so make the current
76
scoped_refptr<
UserScriptMaster
> master(new
UserScriptMaster
(temp_dir_.path(),
94
scoped_refptr<
UserScriptMaster
> master(new
UserScriptMaster
(temp_dir_.path(),
123
EXPECT_TRUE(
UserScriptMaster
::ScriptReloader::ParseMetadataHeader(
135
EXPECT_TRUE(
UserScriptMaster
::ScriptReloader::ParseMetadataHeader(
148
UserScriptMaster
::ScriptReloader::ParseMetadataHeader(text, &script);
161
EXPECT_TRUE(
UserScriptMaster
::ScriptReloader::ParseMetadataHeader(
179
EXPECT_FALSE(
UserScriptMaster
::ScriptReloader::ParseMetadataHeader
[
all
...]
user_script_master.cc
45
UserScriptMaster
::ScriptReloader::ScriptReloader(
UserScriptMaster
* master)
51
bool
UserScriptMaster
::ScriptReloader::ParseMetadataHeader(
135
void
UserScriptMaster
::ScriptReloader::StartScan(
143
this, &
UserScriptMaster
::ScriptReloader::RunScan, script_dir,
147
void
UserScriptMaster
::ScriptReloader::NotifyMaster(
181
void
UserScriptMaster
::ScriptReloader::LoadScriptsFromDirectory(
269
void
UserScriptMaster
::ScriptReloader::RunScan(
293
UserScriptMaster
::
UserScriptMaster
(const FilePath& script_dir, Profile* profile
[
all
...]
convert_user_script.cc
43
if (!
UserScriptMaster
::ScriptReloader::ParseMetadataHeader(content,
extension_startup_browsertest.cc
93
UserScriptMaster
* master = browser()->profile()->GetUserScriptMaster();
/external/chromium/android/autofill/
profile_android.h
113
class
UserScriptMaster
;
148
virtual
UserScriptMaster
* GetUserScriptMaster() { NOTREACHED(); return NULL; }
/external/chromium/chrome/browser/profiles/
profile.h
110
class
UserScriptMaster
;
237
// Retrieves a pointer to the
UserScriptMaster
associated with this
238
// profile. The
UserScriptMaster
is lazily created the first time
240
virtual
UserScriptMaster
* GetUserScriptMaster() = 0;
profile_impl.h
59
virtual
UserScriptMaster
* GetUserScriptMaster();
205
scoped_refptr<
UserScriptMaster
> user_script_master_;
profile.cc
276
virtual
UserScriptMaster
* GetUserScriptMaster() {
profile_impl.cc
423
user_script_master_ = new
UserScriptMaster
(script_dir, this);
748
UserScriptMaster
* ProfileImpl::GetUserScriptMaster() {
[
all
...]
Completed in 2456 milliseconds