blob: 6848a46a1cb8dc319358b5f1b6f71ee1dbe57d67 [file] [log] [blame]
// 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/LocalFrameView.
// PlatformFrameView is needed to let the platform/ layer access functionalities
// of LocalFrameView.
class PLATFORM_EXPORT PlatformFrameView {
public:
PlatformFrameView() {}
virtual ~PlatformFrameView() {}
virtual bool IsLocalFrameView() const { return false; }
};
} // namespace blink
#endif // PlatformFrameView_h