Chromium Code Reviews| 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..a3140706b3f92e5e3b24bde93e9192d68d473098 |
| --- /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 used in PlatformChromeClient as the platform base class |
|
haraken
2017/05/10 01:36:15
PlatformFrameView is a base class for core/frame/F
joelhockey
2017/05/10 01:42:32
done
|
| +// for core/frame/FrameView. |
| +class PLATFORM_EXPORT PlatformFrameView { |
| + public: |
| + PlatformFrameView() {} |
| + virtual ~PlatformFrameView() {} |
| + |
| + virtual bool IsFrameView() const { return false; } |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // PlatformFrameView_h |