Home | History | Annotate | Download | only in extensions

Lines Matching refs:id_string

96     const std::string& id_string, int64* id) {
97 if (base::StringToInt64(id_string, id))
286 std::string id_string;
287 EXTENSION_FUNCTION_VALIDATE(ids->GetString(i, &id_string));
288 if (!GetBookmarkIdAsInt64(id_string, &id))
300 std::string id_string;
301 EXTENSION_FUNCTION_VALIDATE(arg0->GetAsString(&id_string));
302 if (!GetBookmarkIdAsInt64(id_string, &id))
319 std::string id_string;
320 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &id_string));
321 if (!GetBookmarkIdAsInt64(id_string, &id))
392 std::string id_string;
393 if (!args->GetString(0, &id_string))
396 if (base::StringToInt64(id_string, &id))