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

Unified Diff: content/browser/accessibility/browser_accessibility_state_impl_win.cc

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
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
« no previous file with comments | « components/webcrypto/test/test_helpers.cc ('k') | content/browser/child_process_security_policy_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/browser_accessibility_state_impl_win.cc
diff --git a/content/browser/accessibility/browser_accessibility_state_impl_win.cc b/content/browser/accessibility/browser_accessibility_state_impl_win.cc
index ddce50ec60e9ac2027c09040c136593a91b166f6..058e3a7c14834ef1cb2fb7671893da3cdd27b04c 100644
--- a/content/browser/accessibility/browser_accessibility_state_impl_win.cc
+++ b/content/browser/accessibility/browser_accessibility_state_impl_win.cc
@@ -59,13 +59,13 @@ void BrowserAccessibilityStateImpl::UpdatePlatformSpecificHistograms() {
TCHAR filename[MAX_PATH];
GetModuleFileName(modules[i], filename, arraysize(filename));
base::string16 module_name(base::FilePath(filename).BaseName().value());
- if (LowerCaseEqualsASCII(module_name, "fsdomsrv.dll"))
+ if (base::LowerCaseEqualsASCII(module_name, "fsdomsrv.dll"))
jaws = true;
- if (LowerCaseEqualsASCII(module_name, "vbufbackend_gecko_ia2.dll"))
+ if (base::LowerCaseEqualsASCII(module_name, "vbufbackend_gecko_ia2.dll"))
nvda = true;
- if (LowerCaseEqualsASCII(module_name, "stsaw32.dll"))
+ if (base::LowerCaseEqualsASCII(module_name, "stsaw32.dll"))
satogo = true;
- if (LowerCaseEqualsASCII(module_name, "zslhook.dll"))
+ if (base::LowerCaseEqualsASCII(module_name, "zslhook.dll"))
zoomtext = true;
}
« no previous file with comments | « components/webcrypto/test/test_helpers.cc ('k') | content/browser/child_process_security_policy_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698