/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...] |
/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
|
user_script_unittest.cc | 217 ASSERT_EQ(UserScript::DOCUMENT_IDLE, script.run_location());
|
/external/chromium_org/chrome/browser/extensions/ |
convert_user_script_unittest.cc | 67 EXPECT_EQ(UserScript::DOCUMENT_IDLE, script.run_location()); 187 EXPECT_EQ(UserScript::DOCUMENT_START, script.run_location()); 222 EXPECT_EQ(UserScript::DOCUMENT_END, script.run_location()); 258 EXPECT_EQ(UserScript::DOCUMENT_IDLE, script.run_location());
|
convert_user_script.cc | 146 if (script.run_location() == UserScript::DOCUMENT_START) 148 else if (script.run_location() == UserScript::DOCUMENT_END) 150 else if (script.run_location() == UserScript::DOCUMENT_IDLE)
|
/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) {
|
/external/chromium_org/chrome/renderer/extensions/ |
user_script_slave.cc | 306 if (script->run_location() == location) {
|