blob: 8ad568b34c9eaec8d567c49addd3707a55712aee (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// Copyright (c) 2012 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_PUBLIC_BROWSER_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_
#define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_
#pragma once
#import <Cocoa/Cocoa.h>
@protocol RenderWidgetHostViewMacDelegate;
namespace content {
class RenderWidgetHost;
class WebDragDestDelegate;
struct ContextMenuParams;
// This interface allows a client to extend the functionality of
// WebContentsViewMac.
class WebContentsViewMacDelegate {
public:
virtual ~WebContentsViewMacDelegate() {}
// Returns a newly-created delegate for the RenderWidgetHostViewMac, to handle
// events on the responder chain.
virtual NSObject<RenderWidgetHostViewMacDelegate>*
CreateRenderWidgetHostViewDelegate(
RenderWidgetHost* render_widget_host) = 0;
// Returns a delegate to process drags not handled by content.
virtual WebDragDestDelegate* DragDelegate() = 0;
// Shows a context menu.
virtual void ShowContextMenu(const content::ContextMenuParams& params) = 0;
// Notifications that the native view was created/destroyed.
virtual void NativeViewCreated(NSView* view) = 0;
virtual void NativeViewDestroyed(NSView* view) = 0;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_VIEW_MAC_DELEGATE_H_
|