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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PlatformFrameView_h
6 #define PlatformFrameView_h
7
8 #include "platform/PlatformExport.h"
9
10 namespace blink {
11
12 // PlatformFrameView is a base class for core/frame/FrameView. PlatformFrameView
13 // is needed to let the platform/ layer access functionalities of FrameView.
14 class PLATFORM_EXPORT PlatformFrameView {
15 public:
16 PlatformFrameView() {}
17 virtual ~PlatformFrameView() {}
18
19 virtual bool IsFrameView() const { return false; }
20 };
21
22 } // namespace blink
23
24 #endif // PlatformFrameView_h
OLDNEW
« 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