Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4174)

Unified Diff: chrome/browser/internal_auth.cc

Issue 1200053004: Move more string_util functions to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/internal_auth.cc
diff --git a/chrome/browser/internal_auth.cc b/chrome/browser/internal_auth.cc
index 4286011fb38810ae4f6ec16cee6d3e122f0ae4dc..c3f44c7cdad5abfa5e664a3c9182023574b79d33 100644
--- a/chrome/browser/internal_auth.cc
+++ b/chrome/browser/internal_auth.cc
@@ -112,7 +112,7 @@ bool IsVarSane(const std::string& var) {
var.size() <= kStringLengthLimit &&
base::IsStringASCII(var) &&
var.find_first_not_of(kAllowedChars) == std::string::npos &&
- !IsAsciiDigit(var[0]);
+ !base::IsAsciiDigit(var[0]);
}
bool IsValueSane(const std::string& value) {
@@ -448,7 +448,7 @@ bool InternalAuthVerification::VerifyPassport(
void InternalAuthVerification::ChangeKey(const std::string& key) {
base::AutoLock alk(g_verification_service_lock.Get());
g_verification_service.Get().ChangeKey(key);
-};
+}
// static
int InternalAuthVerification::get_verification_window_ticks() {
« no previous file with comments | « chrome/browser/install_verification/win/module_ids.cc ('k') | chrome/browser/profile_resetter/jtl_foundation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698