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

Unified Diff: gpu/config/gpu_test_expectations_parser.cc

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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
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) {
« no previous file with comments | « gpu/config/gpu_info_collector_linux.cc ('k') | mojo/android/javatests/src/org/chromium/mojo/MojoTestCase.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698