HomeSort by relevance Sort by last modified time
    Searched refs:run_location (Results 1 - 4 of 4) 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
user_script_unittest.cc 171 ASSERT_EQ(UserScript::DOCUMENT_IDLE, script.run_location());
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...]

Completed in 807 milliseconds