Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 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
| |
| 13 // for core/frame/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 | |
| OLD | NEW |