forked from chromiumembedded/java-cef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCefLifeSpanHandlerAdapter.java
More file actions
35 lines (28 loc) · 1016 Bytes
/
CefLifeSpanHandlerAdapter.java
File metadata and controls
35 lines (28 loc) · 1016 Bytes
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
// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
package org.cef.handler;
import org.cef.browser.CefBrowser;
import org.cef.browser.CefFrame;
/**
* An abstract adapter class for receiving life span events.
* The methods in this class are empty.
* This class exists as convenience for creating handler objects.
*/
public abstract class CefLifeSpanHandlerAdapter implements CefLifeSpanHandler {
@Override
public boolean onBeforePopup(
CefBrowser browser, CefFrame frame, String target_url, String target_frame_name) {
return false;
}
@Override
public void onAfterCreated(CefBrowser browser) {}
@Override
public void onAfterParentChanged(CefBrowser browser) {}
@Override
public boolean doClose(CefBrowser browser) {
return false;
}
@Override
public void onBeforeClose(CefBrowser browser) {}
}