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 PlatformLocalFrame_h |
| 6 #define PlatformLocalFrame_h |
| 7 |
| 8 #include "platform/PlatformExport.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 // PlatformLocalFrame is used in PlatformChromeClient as the platform base class |
| 13 // for core/frame/LocalFrame. |
| 14 class PLATFORM_EXPORT PlatformLocalFrame { |
| 15 public: |
| 16 PlatformLocalFrame() {} |
| 17 virtual ~PlatformLocalFrame() {} |
| 18 |
| 19 virtual bool IsLocalFrame() const { return false; } |
| 20 }; |
| 21 |
| 22 } // namespace blink |
| 23 |
| 24 #endif // PlatformLocalFrame_h |
OLD | NEW |