| Index: gpu/config/gpu_test_expectations_parser.cc
|
| diff --git a/gpu/config/gpu_test_expectations_parser.cc b/gpu/config/gpu_test_expectations_parser.cc
|
| index d210cbdceec8ffe92bcb6492af59955efebb9147..ca4031d92c3167f6da29c897d405bbe42183fe72 100644
|
| --- a/gpu/config/gpu_test_expectations_parser.cc
|
| +++ b/gpu/config/gpu_test_expectations_parser.cc
|
| @@ -131,9 +131,9 @@ const char* kErrorMessage[] = {
|
| };
|
|
|
| Token ParseToken(const std::string& word) {
|
| - if (StartsWithASCII(word, "//", false))
|
| + if (base::StartsWithASCII(word, "//", false))
|
| return kTokenComment;
|
| - if (StartsWithASCII(word, "0x", false))
|
| + if (base::StartsWithASCII(word, "0x", false))
|
| return kConfigGPUDeviceID;
|
|
|
| for (int32 i = 0; i < kNumberOfExactMatchTokens; ++i) {
|
|
|