Home | History | Annotate | Download | only in settings

Lines Matching defs:id

35 // Fallback time zone ID used in case of an unexpected error.
215 void SetTimezoneIDFromString(const std::string& id) {
222 base::FilePath timezone_file(kTimezoneFilesDir + id);
378 std::string id = UTF16ToUTF8(GetTimezoneID(*known_timezone));
379 VLOG(1) << "Setting timezone to " << id;
383 PostTask(FROM_HERE, base::Bind(&SetTimezoneIDFromString, id));
395 std::string id = GetTimezoneIDAsString();
396 if (id.empty()) {
397 id = kFallbackTimeZoneId;
398 LOG(ERROR) << "Got an empty string for timezone, default to '" << id;
402 icu::UnicodeString::fromUTF8(id)));
404 // Store a known timezone equivalent to id in |timezone_|.
412 VLOG(1) << "Timezone initially set to " << id;
458 icu::UnicodeString id;
459 timezone.getID(id);
460 return string16(id.getBuffer(), id.length());