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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp

Issue 1740483004: Rename enums/functions that collide in chromium style in core/html/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get-names-5
Patch Set: get-names-6: . Created 4 years, 10 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: third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
index b5ed951b2b0bdc21186ab55d21f0b55d24aa320f..47686fe55c4905c37ab5ffcff89491424f72debe 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
@@ -38,8 +38,8 @@ public:
bool seeking() const override { return false; };
double duration() const override { return 0.0; };
double currentTime() const override { return 0.0; };
- NetworkState networkState() const override { return NetworkStateEmpty; };
- ReadyState readyState() const override { return ReadyStateHaveNothing; };
+ NetworkState getNetworkState() const override { return NetworkStateEmpty; };
+ ReadyState getReadyState() const override { return ReadyStateHaveNothing; };
bool didLoadingProgress() override { return false; };
bool hasSingleSecurityOrigin() const override { return true; };
bool didPassCORSAccessCheck() const override { return true; };
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLVideoElement.cpp ('k') | third_party/WebKit/Source/core/html/LinkManifest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698