summaryrefslogtreecommitdiffstats
path: root/ash
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-06-11 18:57:57 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-12 01:59:01 +0000
commit44ce0ec5b05184c4e33d597d4e5a32d9f38b15c2 (patch)
tree30eccdbbe72fb47810535fe56e0a8313be2db4b2 /ash
parent57ca2cd795596162f06a6aa67367d8ce0d9ded52 (diff)
downloadchromium_src-44ce0ec5b05184c4e33d597d4e5a32d9f38b15c2.zip
chromium_src-44ce0ec5b05184c4e33d597d4e5a32d9f38b15c2.tar.gz
chromium_src-44ce0ec5b05184c4e33d597d4e5a32d9f38b15c2.tar.bz2
Move StartsWith[ASCII] to base namespace.
NOPRESUBMIT=true (no presubmit due to removing base:: from a ScopedAllowIO) Review URL: https://codereview.chromium.org/1172183002 Cr-Commit-Position: refs/heads/master@{#334108}
Diffstat (limited to 'ash')
-rw-r--r--ash/wm/lock_state_controller.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ash/wm/lock_state_controller.cc b/ash/wm/lock_state_controller.cc
index 4448812..9a9d520 100644
--- a/ash/wm/lock_state_controller.cc
+++ b/ash/wm/lock_state_controller.cc
@@ -493,9 +493,9 @@ void LockStateController::PreLockAnimationFinished(bool request_lock) {
// Increase lock timeout for slower hardware, see http://crbug.com/350628
const std::string board = base::SysInfo::GetLsbReleaseBoard();
if (board == "x86-mario" ||
- StartsWithASCII(board, "x86-alex", true /* case_sensitive */) ||
- StartsWithASCII(board, "x86-zgb", true /* case_sensitive */) ||
- StartsWithASCII(board, "daisy", true /* case_sensitive */)) {
+ base::StartsWithASCII(board, "x86-alex", true /* case_sensitive */) ||
+ base::StartsWithASCII(board, "x86-zgb", true /* case_sensitive */) ||
+ base::StartsWithASCII(board, "daisy", true /* case_sensitive */)) {
timeout *= 2;
}
// Times out on ASAN bots.