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
headless / lib / browser / headless_shell_application_mac.mm [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "headless/lib/browser/headless_shell_application_mac.h"
#include "base/auto_reset.h"
#include "base/observer_list.h"
#include "content/public/browser/native_event_processor_mac.h"
#include "content/public/browser/native_event_processor_observer_mac.h"
@interface HeadlessShellCrApplication () <NativeEventProcessor> {
base::ObserverList<content::NativeEventProcessorObserver>::Unchecked
_observers;
}
@end
@implementation HeadlessShellCrApplication
- (BOOL)isHandlingSendEvent {
// Since headless mode is non-interactive, always return false.
return false;
}
// This method is required to allow handling some input events on Mac OS.
- (void)setHandlingSendEvent:(BOOL)handlingSendEvent {
}
- (void)sendEvent:(NSEvent*)event {
content::ScopedNotifyNativeEventProcessorObserver scopedObserverNotifier(
&_observers, event);
[super sendEvent:event];
}
- (void)addNativeEventProcessorObserver:
(content::NativeEventProcessorObserver*)observer {
_observers.AddObserver(observer);
}
- (void)removeNativeEventProcessorObserver:
(content::NativeEventProcessorObserver*)observer {
_observers.RemoveObserver(observer);
}
@end