| Index: third_party/WebKit/Source/platform/PlatformFrameView.h
|
| diff --git a/third_party/WebKit/Source/platform/PlatformFrameView.h b/third_party/WebKit/Source/platform/PlatformFrameView.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a2b0f76a01e138f7765f9cf36c57c560e5f0c707
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/platform/PlatformFrameView.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2017 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 PlatformFrameView_h
|
| +#define PlatformFrameView_h
|
| +
|
| +#include "platform/PlatformExport.h"
|
| +
|
| +namespace blink {
|
| +
|
| +// PlatformFrameView is a base class for core/frame/FrameView. PlatformFrameView
|
| +// is needed to let the platform/ layer access functionalities of FrameView.
|
| +class PLATFORM_EXPORT PlatformFrameView {
|
| + public:
|
| + PlatformFrameView() {}
|
| + virtual ~PlatformFrameView() {}
|
| +
|
| + virtual bool IsFrameView() const { return false; }
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // PlatformFrameView_h
|
|
|