summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/platform_frame_view.h
blob: 78a4136569d109d2f76567d13c0344db3b309a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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 THIRD_PARTY_BLINK_RENDERER_PLATFORM_PLATFORM_FRAME_VIEW_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_PLATFORM_FRAME_VIEW_H_

#include "third_party/blink/renderer/platform/platform_export.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() = default;
  virtual ~PlatformFrameView() = default;

  virtual bool IsLocalFrameView() const { return false; }
};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_PLATFORM_FRAME_VIEW_H_