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 #ifndef ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ |
6 #define ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include "components/web_contents_delegate_android/web_contents_delegate_android
.h" | 10 #include "components/web_contents_delegate_android/web_contents_delegate_android
.h" |
(...skipping 31 matching lines...) Loading... |
42 | 42 |
43 void NavigationStateChanged(content::WebContents* source, | 43 void NavigationStateChanged(content::WebContents* source, |
44 content::InvalidateTypes changed_flags) override; | 44 content::InvalidateTypes changed_flags) override; |
45 void WebContentsCreated(content::WebContents* source_contents, | 45 void WebContentsCreated(content::WebContents* source_contents, |
46 int opener_render_frame_id, | 46 int opener_render_frame_id, |
47 const base::string16& frame_name, | 47 const base::string16& frame_name, |
48 const GURL& target_url, | 48 const GURL& target_url, |
49 content::WebContents* new_contents) override; | 49 content::WebContents* new_contents) override; |
50 | 50 |
51 void CloseContents(content::WebContents* source) override; | 51 void CloseContents(content::WebContents* source) override; |
52 void ActivateContents(content::WebContents* contents) override; | 52 void ActivateContents(content::WebContents* contents, |
| 53 bool user_gesture) override; |
53 void LoadingStateChanged(content::WebContents* source, | 54 void LoadingStateChanged(content::WebContents* source, |
54 bool to_different_document) override; | 55 bool to_different_document) override; |
55 void RequestMediaAccessPermission( | 56 void RequestMediaAccessPermission( |
56 content::WebContents* web_contents, | 57 content::WebContents* web_contents, |
57 const content::MediaStreamRequest& request, | 58 const content::MediaStreamRequest& request, |
58 const content::MediaResponseCallback& callback) override; | 59 const content::MediaResponseCallback& callback) override; |
59 void EnterFullscreenModeForTab(content::WebContents* web_contents, | 60 void EnterFullscreenModeForTab(content::WebContents* web_contents, |
60 const GURL& origin) override; | 61 const GURL& origin) override; |
61 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; | 62 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; |
62 bool IsFullscreenForTabOrPending( | 63 bool IsFullscreenForTabOrPending( |
63 const content::WebContents* web_contents) const override; | 64 const content::WebContents* web_contents) const override; |
64 | 65 |
65 private: | 66 private: |
66 bool is_fullscreen_; | 67 bool is_fullscreen_; |
67 }; | 68 }; |
68 | 69 |
69 bool RegisterAwWebContentsDelegate(JNIEnv* env); | 70 bool RegisterAwWebContentsDelegate(JNIEnv* env); |
70 | 71 |
71 } // namespace android_webview | 72 } // namespace android_webview |
72 | 73 |
73 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ | 74 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ |
OLD | NEW |