OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 package org.chromium.chrome.browser; | 5 package org.chromium.chrome.browser; |
6 | 6 |
7 import org.chromium.base.CalledByNative; | 7 import org.chromium.base.CalledByNative; |
8 import org.chromium.chrome.browser.component.web_contents_delegate_android.WebCo
ntentsDelegateAndroid; | 8 import org.chromium.content.components.web_contents_delegate_android.WebContents
DelegateAndroid; |
9 | 9 |
10 /** | 10 /** |
11 * Chromium Android specific WebContentsDelegate. | 11 * Chromium Android specific WebContentsDelegate. |
12 * This file is the Java version of the native class of the same name. | 12 * This file is the Java version of the native class of the same name. |
13 * It should contain empty WebContentsDelegate methods to be implemented by the
embedder. | 13 * It should contain empty WebContentsDelegate methods to be implemented by the
embedder. |
14 * These methods belong to the Chromium Android port but not to WebView. | 14 * These methods belong to the Chromium Android port but not to WebView. |
15 */ | 15 */ |
16 public class ChromeWebContentsDelegateAndroid extends WebContentsDelegateAndroid
{ | 16 public class ChromeWebContentsDelegateAndroid extends WebContentsDelegateAndroid
{ |
17 | 17 |
18 @CalledByNative | 18 @CalledByNative |
19 public void onFindResultAvailable(FindNotificationDetails result) { | 19 public void onFindResultAvailable(FindNotificationDetails result) { |
20 } | 20 } |
21 | 21 |
22 @CalledByNative | 22 @CalledByNative |
23 public void onFindMatchRectsAvailable(FindMatchRectsDetails result) { | 23 public void onFindMatchRectsAvailable(FindMatchRectsDetails result) { |
24 } | 24 } |
25 } | 25 } |
OLD | NEW |