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

Unified Diff: third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h

Issue 1735033004: Bindings and client interface for the IsAppInstalled API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/public/platform/modules/installedapp/WebRelatedApplication.h
diff --git a/third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h b/third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h
similarity index 50%
copy from third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h
copy to third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h
index 6c0efcee6afd06490a5fa1cea20b5ffe78c0202f..154fff453c0f8ade63a68c11fac6352d2fba2d74 100644
--- a/third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h
+++ b/third_party/WebKit/public/platform/modules/installedapp/WebRelatedApplication.h
@@ -2,20 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WebMediaMetadata_h
-#define WebMediaMetadata_h
+#ifndef WebRelatedApplication_h
+#define WebRelatedApplication_h
#include "public/platform/WebString.h"
namespace blink {
-// Representation of the MediaMetadata interface to the content layer.
-struct WebMediaMetadata {
- WebString title;
- WebString artist;
- WebString album;
+struct WebRelatedApplication {
+ WebRelatedApplication() {}
+
+ WebString platform;
+ WebString url;
+ WebString id;
};
} // namespace blink
-#endif // WebMediaMetadata_h
+#endif // WebRelatedApplication_h

Powered by Google App Engine
This is Rietveld 408576698