diff options
author | brettw <brettw@chromium.org> | 2015-07-15 23:48:05 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-16 06:48:41 +0000 |
commit | edce9a33027cc5f73c4866d70e34f690f6720a56 (patch) | |
tree | a8dbfae7b9ebf5a5cac2bb8a02f59b1637ddfa9c /chrome/installer/gcapi | |
parent | fc4f1d1d95a221319f4c275e870e9b7cf2dc5040 (diff) | |
download | chromium_src-edce9a33027cc5f73c4866d70e34f690f6720a56.zip chromium_src-edce9a33027cc5f73c4866d70e34f690f6720a56.tar.gz chromium_src-edce9a33027cc5f73c4866d70e34f690f6720a56.tar.bz2 |
Remove some legacy versions of StartsWith and EndsWith.
This just replaces
true -> base::CompareCase::SENSITIVE
false -> base::CompareCase::INSENSITIVE_ASCII
I checked the insensitive cases to make sure they're not doing anything suspicious. The old version is a sometimes-correct Unicode comparison so converting to INSENSTITIVE_ASCII isn't a no-op. However, generally the prefix/suffix checking is done against a hardcoded string so there were very few cases to actually look at.
extensions/browser/api/declarative_webrequest/webrequest_condition_attribute.cc has a not-quite search-and-replace change where I changed the type of a class variable.
BUG=506255
TBR=jam
Review URL: https://codereview.chromium.org/1239493005
Cr-Commit-Position: refs/heads/master@{#338996}
Diffstat (limited to 'chrome/installer/gcapi')
-rw-r--r-- | chrome/installer/gcapi/gcapi.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/installer/gcapi/gcapi.cc b/chrome/installer/gcapi/gcapi.cc index fb5829c..349be3a 100644 --- a/chrome/installer/gcapi/gcapi.cc +++ b/chrome/installer/gcapi/gcapi.cc @@ -361,7 +361,8 @@ BOOL CALLBACK ChromeWindowEnumProc(HWND hwnd, LPARAM lparam) { if (!params->shunted_hwnds.count(hwnd) && ::GetClassName(hwnd, window_class, arraysize(window_class)) && - base::StartsWith(window_class, kChromeWindowClassPrefix, false) && + base::StartsWith(window_class, kChromeWindowClassPrefix, + base::StartsWith::INSENSITIVE_ASCII) && ::SetWindowPos(hwnd, params->window_insert_after, params->x, params->y, params->width, params->height, params->flags)) { params->shunted_hwnds.insert(hwnd); |