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

Unified Diff: Source/core/html/track/InbandTextTrack.h

Issue 1115553002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 8 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
« no previous file with comments | « Source/core/html/shadow/DateTimeFieldElement.cpp ('k') | Source/core/html/track/TrackBase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/InbandTextTrack.h
diff --git a/Source/core/html/track/InbandTextTrack.h b/Source/core/html/track/InbandTextTrack.h
index 2d2304a204b2f2f2e6a3c2dc3de566f47faa1ac7..020d6cadaea053f8c5139ac092deb73a24a15b2c 100644
--- a/Source/core/html/track/InbandTextTrack.h
+++ b/Source/core/html/track/InbandTextTrack.h
@@ -38,19 +38,19 @@ class WebString;
namespace blink {
-class InbandTextTrack final : public TextTrack, public blink::WebInbandTextTrackClient {
+class InbandTextTrack final : public TextTrack, public WebInbandTextTrackClient {
public:
- static PassRefPtrWillBeRawPtr<InbandTextTrack> create(blink::WebInbandTextTrack*);
+ static PassRefPtrWillBeRawPtr<InbandTextTrack> create(WebInbandTextTrack*);
virtual ~InbandTextTrack();
virtual void setTrackList(TextTrackList*) override;
private:
- InbandTextTrack(blink::WebInbandTextTrack*);
+ InbandTextTrack(WebInbandTextTrack*);
- virtual void addWebVTTCue(double, double, const blink::WebString&, const blink::WebString&, const blink::WebString&) override;
+ virtual void addWebVTTCue(double, double, const WebString&, const WebString&, const WebString&) override;
- blink::WebInbandTextTrack* m_webTrack;
+ WebInbandTextTrack* m_webTrack;
};
} // namespace blink
« no previous file with comments | « Source/core/html/shadow/DateTimeFieldElement.cpp ('k') | Source/core/html/track/TrackBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698