OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:run_location
(Results
1 - 6
of
6
) sorted by null
/external/chromium/chrome/common/extensions/
user_script.cc
108
pickle->WriteInt(
run_location
());
150
int
run_location
= 0;
local
151
CHECK(pickle.ReadInt(iter, &
run_location
));
152
CHECK(
run_location
>= 0 &&
run_location
< RUN_LOCATION_LAST);
153
run_location_ = static_cast<RunLocation>(
run_location
);
user_script.h
127
RunLocation
run_location
() const { return run_location_; }
function in class:UserScript
extension.cc
716
std::string
run_location
;
local
717
if (!content_script->GetString(keys::kRunAt, &
run_location
)) {
723
if (
run_location
== values::kRunAtDocumentStart) {
725
} else if (
run_location
== values::kRunAtDocumentEnd) {
727
} else if (
run_location
== values::kRunAtDocumentIdle) {
[
all
...]
/external/chromium_org/extensions/common/
user_script.cc
126
pickle->WriteInt(
run_location
());
170
int
run_location
= 0;
local
171
CHECK(pickle.ReadInt(iter, &
run_location
));
172
CHECK(
run_location
>= 0 &&
run_location
< RUN_LOCATION_LAST);
173
run_location_ = static_cast<RunLocation>(
run_location
);
user_script.h
129
RunLocation
run_location
() const { return run_location_; }
function in class:extensions::UserScript
/external/chromium_org/chrome/common/extensions/manifest_handlers/
content_scripts_handler.cc
80
std::string
run_location
;
local
81
if (!content_script->GetString(keys::kRunAt, &
run_location
)) {
88
if (
run_location
== values::kRunAtDocumentStart) {
90
} else if (
run_location
== values::kRunAtDocumentEnd) {
92
} else if (
run_location
== values::kRunAtDocumentIdle) {
Completed in 70 milliseconds