| 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
|
| deleted file mode 100644
|
| index 51dcfdab2bb4213ec7ab8c653e78e04169598f30..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/modules/mediasession/MediaArtwork.h
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -// Copyright 2016 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef MediaArtwork_h
|
| -#define MediaArtwork_h
|
| -
|
| -#include "bindings/core/v8/ScriptWrappable.h"
|
| -#include "modules/ModulesExport.h"
|
| -#include "platform/heap/Handle.h"
|
| -#include "wtf/text/WTFString.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class ExecutionContext;
|
| -class MediaArtworkInit;
|
| -
|
| -class MODULES_EXPORT MediaArtwork final
|
| - : public GarbageCollectedFinalized<MediaArtwork>,
|
| - public ScriptWrappable {
|
| - DEFINE_WRAPPERTYPEINFO();
|
| -
|
| - public:
|
| - static MediaArtwork* create(ExecutionContext*, const MediaArtworkInit&);
|
| -
|
| - String src() const;
|
| - String sizes() const;
|
| - String type() const;
|
| -
|
| - DEFINE_INLINE_TRACE() {}
|
| -
|
| - private:
|
| - MediaArtwork(ExecutionContext*, const MediaArtworkInit&);
|
| -
|
| - String m_src;
|
| - String m_sizes;
|
| - String m_type;
|
| -};
|
| -}
|
| -
|
| -#endif // MediaArtwork_h
|
|
|