HomeSort by relevance Sort by last modified time
    Searched defs:run_location (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/extensions/renderer/
programmatic_script_injector.cc 59 UserScript::RunLocation run_location) const {
60 return GetRunLocation() == run_location && params_->is_javascript;
64 UserScript::RunLocation run_location) const {
65 return GetRunLocation() == run_location && !params_->is_javascript;
90 UserScript::RunLocation run_location) const {
91 DCHECK_EQ(GetRunLocation(), run_location); local
101 UserScript::RunLocation run_location) const {
102 DCHECK_EQ(GetRunLocation(), run_location); local
111 UserScript::RunLocation run_location) {
  /external/chromium_org/extensions/common/
user_script.cc 140 pickle->WriteInt(run_location());
186 int run_location = 0; local
187 CHECK(pickle.ReadInt(iter, &run_location));
188 CHECK(run_location >= 0 && run_location < RUN_LOCATION_LAST);
189 run_location_ = static_cast<RunLocation>(run_location);
user_script.h 152 RunLocation run_location() const { return run_location_; } function in class:extensions::UserScript
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
content_scripts_handler.cc 81 std::string run_location; local
82 if (!content_script->GetString(keys::kRunAt, &run_location)) {
89 if (run_location == values::kRunAtDocumentStart) {
91 } else if (run_location == values::kRunAtDocumentEnd) {
93 } else if (run_location == values::kRunAtDocumentIdle) {

Completed in 216 milliseconds