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

Unified Diff: third_party/WebKit/Source/platform/PlatformFrameView.h

Issue 2873213002: Add PlatformFrameView class. (Closed)
Patch Set: #include PlatformFrameView inside platform.dll Created 3 years, 7 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/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
« no previous file with comments | « third_party/WebKit/Source/platform/PlatformChromeClient.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698