| 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 dec42c5a7825add388e7d2d23448323708672eb1..9a6e191af553b206c7b8945fa55925bf37e57b29 100644
|
| --- a/gpu/config/gpu_test_expectations_parser.cc
|
| +++ b/gpu/config/gpu_test_expectations_parser.cc
|
| @@ -129,9 +129,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) {
|
|
|