blob: 7ea2b175e661d75946a13b37143957e446d9c3ac (
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
26
27
28
|
// Copyright 2016 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 CONTENT_RENDERER_RENDER_WIDGET_DELEGATE_H_
#define CONTENT_RENDERER_RENDER_WIDGET_DELEGATE_H_
#include "content/common/content_export.h"
namespace content {
//
// RenderWidgetDelegate
//
// An interface to provide View-level (and/or Page-level) functionality to
// the main frame's RenderWidget.
class CONTENT_EXPORT RenderWidgetDelegate {
public:
virtual ~RenderWidgetDelegate() = default;
// Returns whether multiple windows are allowed for the widget. If true, then
// Show() may be called more than once.
virtual bool SupportsMultipleWindowsForWidget() = 0;
};
} // namespace content
#endif // CONTENT_RENDERER_RENDER_WIDGET_DELEGATE_H_
|