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

Unified Diff: third_party/WebKit/Source/modules/mediasession/MediaArtwork.h

Issue 2367393002: Migrating MediaSession messages to mojo (Closed)
Patch Set: rebase onto new mojo types Created 4 years, 3 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/modules/mediasession/MediaArtwork.h
diff --git a/third_party/WebKit/Source/modules/mediasession/MediaArtwork.h b/third_party/WebKit/Source/modules/mediasession/MediaArtwork.h
index 8614406a2fde8e903cd4dadd8d79553d9e138c07..9ed7efd0617b394747a81f183f71b2554cd61493 100644
--- a/third_party/WebKit/Source/modules/mediasession/MediaArtwork.h
+++ b/third_party/WebKit/Source/modules/mediasession/MediaArtwork.h
@@ -8,7 +8,7 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "modules/ModulesExport.h"
#include "platform/heap/Handle.h"
-#include "public/platform/modules/mediasession/WebMediaArtwork.h"
+#include "wtf/text/WTFString.h"
namespace blink {
@@ -26,14 +26,14 @@ public:
String sizes() const;
String type() const;
- WebMediaArtwork* data() { return &m_data; }
-
DEFINE_INLINE_TRACE() { }
private:
MediaArtwork(ExecutionContext*, const MediaArtworkInit&);
- WebMediaArtwork m_data;
+ String m_src;
hubbe 2016/09/30 20:04:23 Please document variables.
+ String m_sizes;
+ String m_type;
};
}

Powered by Google App Engine
This is Rietveld 408576698