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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
// Copyright (c) 2006-2008 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.
#include "chrome/plugin/plugin_interpose_util_mac.h"
#import <AppKit/AppKit.h>
#import <objc/runtime.h>
#include "chrome/common/plugin_messages.h"
#include "chrome/plugin/plugin_thread.h"
#include "webkit/glue/plugins/webplugin_delegate_impl.h"
namespace mac_plugin_interposing {
// TODO(stuartmorgan): Make this an IPC to order the plugin process above the
// browser process only if the browser is current frontmost.
__attribute__((visibility("default")))
void SwitchToPluginProcess() {
ProcessSerialNumber this_process, front_process;
if ((GetCurrentProcess(&this_process) != noErr) ||
(GetFrontProcess(&front_process) != noErr)) {
return;
}
Boolean matched = false;
if ((SameProcess(&this_process, &front_process, &matched) == noErr) &&
!matched) {
SetFrontProcess(&this_process);
}
}
__attribute__((visibility("default")))
WebPluginDelegateImpl* GetActiveDelegate() {
return WebPluginDelegateImpl::GetActiveDelegate();
}
__attribute__((visibility("default")))
void NotifyBrowserOfPluginSelectWindow(uint32 window_id, CGRect bounds,
bool modal) {
PluginThread* plugin_thread = PluginThread::current();
if (plugin_thread) {
gfx::Rect window_bounds(bounds);
plugin_thread->Send(
new PluginProcessHostMsg_PluginSelectWindow(window_id, window_bounds,
modal));
}
}
__attribute__((visibility("default")))
void NotifyBrowserOfPluginShowWindow(uint32 window_id, CGRect bounds,
bool modal) {
PluginThread* plugin_thread = PluginThread::current();
if (plugin_thread) {
gfx::Rect window_bounds(bounds);
plugin_thread->Send(
new PluginProcessHostMsg_PluginShowWindow(window_id, window_bounds,
modal));
}
}
__attribute__((visibility("default")))
void NotifyBrowserOfPluginHideWindow(uint32 window_id, CGRect bounds) {
PluginThread* plugin_thread = PluginThread::current();
if (plugin_thread) {
gfx::Rect window_bounds(bounds);
plugin_thread->Send(
new PluginProcessHostMsg_PluginHideWindow(window_id, window_bounds));
}
}
__attribute__((visibility("default")))
void NotifyPluginOfSetThemeCursor(WebPluginDelegateImpl* delegate,
ThemeCursor cursor) {
delegate->SetThemeCursor(cursor);
}
__attribute__((visibility("default")))
void NotifyPluginOfSetCursor(WebPluginDelegateImpl* delegate,
const Cursor* cursor) {
delegate->SetCursor(cursor);
}
__attribute__((visibility("default")))
bool GetPluginWindowHasFocus(const WebPluginDelegateImpl* delegate) {
return delegate->GetWindowHasFocus();
}
} // namespace mac_plugin_interposing
#pragma mark -
struct WindowInfo {
uint32 window_id;
CGRect bounds;
WindowInfo(NSWindow* window) {
NSInteger window_num = [window windowNumber];
window_id = window_num > 0 ? window_num : 0;
bounds = NSRectToCGRect([window frame]);
}
};
static void OnPluginWindowClosed(const WindowInfo& window_info) {
if (window_info.window_id == 0)
return;
mac_plugin_interposing::NotifyBrowserOfPluginHideWindow(window_info.window_id,
window_info.bounds);
}
static void OnPluginWindowShown(const WindowInfo& window_info, BOOL is_modal) {
// The window id is 0 if it has never been shown (including while it is the
// process of being shown for the first time); when that happens, we'll catch
// it in _setWindowNumber instead.
static BOOL s_pending_display_is_modal = NO;
if (window_info.window_id == 0) {
if (is_modal)
s_pending_display_is_modal = YES;
return;
}
if (s_pending_display_is_modal) {
is_modal = YES;
s_pending_display_is_modal = NO;
}
mac_plugin_interposing::NotifyBrowserOfPluginShowWindow(
window_info.window_id, window_info.bounds, is_modal);
}
@interface NSWindow (ChromePluginInterposing)
- (void)chromePlugin_orderOut:(id)sender;
- (void)chromePlugin_orderFront:(id)sender;
- (void)chromePlugin_makeKeyAndOrderFront:(id)sender;
- (void)chromePlugin_setWindowNumber:(NSInteger)num;
@end
@implementation NSWindow (ChromePluginInterposing)
- (void)chromePlugin_orderOut:(id)sender {
WindowInfo window_info(self);
[self chromePlugin_orderOut:sender];
OnPluginWindowClosed(window_info);
}
- (void)chromePlugin_orderFront:(id)sender {
mac_plugin_interposing::SwitchToPluginProcess();
[self chromePlugin_orderFront:sender];
OnPluginWindowShown(WindowInfo(self), NO);
}
- (void)chromePlugin_makeKeyAndOrderFront:(id)sender {
mac_plugin_interposing::SwitchToPluginProcess();
[self chromePlugin_makeKeyAndOrderFront:sender];
OnPluginWindowShown(WindowInfo(self), NO);
}
- (void)chromePlugin_setWindowNumber:(NSInteger)num {
if (num > 0)
mac_plugin_interposing::SwitchToPluginProcess();
[self chromePlugin_setWindowNumber:num];
if (num > 0)
OnPluginWindowShown(WindowInfo(self), NO);
}
@end
@interface NSApplication (ChromePluginInterposing)
- (NSInteger)chromePlugin_runModalForWindow:(NSWindow*)window;
@end
@implementation NSApplication (ChromePluginInterposing)
- (NSInteger)chromePlugin_runModalForWindow:(NSWindow*)window {
mac_plugin_interposing::SwitchToPluginProcess();
// This is out-of-order relative to the other calls, but runModalForWindow:
// won't return until the window closes, and the order only matters for
// full-screen windows.
OnPluginWindowShown(WindowInfo(window), YES);
return [self chromePlugin_runModalForWindow:window];
}
@end
@interface NSCursor (ChromePluginInterposing)
- (void)chromePlugin_set;
@end
@implementation NSCursor (ChromePluginInterposing)
- (void)chromePlugin_set {
WebPluginDelegateImpl* delegate = mac_plugin_interposing::GetActiveDelegate();
if (delegate) {
delegate->SetNSCursor(self);
return;
}
[self chromePlugin_set];
}
@end
#pragma mark -
static void ExchangeMethods(Class target_class, SEL original, SEL replacement) {
Method m1 = class_getInstanceMethod(target_class, original);
Method m2 = class_getInstanceMethod(target_class, replacement);
if (m1 && m2)
method_exchangeImplementations(m1, m2);
else
NOTREACHED() << "Cocoa swizzling failed";
}
namespace mac_plugin_interposing {
void SetUpCocoaInterposing() {
Class nswindow_class = [NSWindow class];
ExchangeMethods(nswindow_class, @selector(orderOut:),
@selector(chromePlugin_orderOut:));
ExchangeMethods(nswindow_class, @selector(orderFront:),
@selector(chromePlugin_orderFront:));
ExchangeMethods(nswindow_class, @selector(makeKeyAndOrderFront:),
@selector(chromePlugin_makeKeyAndOrderFront:));
ExchangeMethods(nswindow_class, @selector(_setWindowNumber:),
@selector(chromePlugin_setWindowNumber:));
ExchangeMethods([NSApplication class], @selector(runModalForWindow:),
@selector(chromePlugin_runModalForWindow:));
ExchangeMethods([NSCursor class], @selector(set),
@selector(chromePlugin_set));
}
} // namespace mac_plugin_interposing
|