| 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_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ |
| 6 #define ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_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 23 matching lines...) Expand all Loading... |
| 34 const content::FileChooserParams& params) override; | 34 const content::FileChooserParams& params) override; |
| 35 void AddNewContents(content::WebContents* source, | 35 void AddNewContents(content::WebContents* source, |
| 36 content::WebContents* new_contents, | 36 content::WebContents* new_contents, |
| 37 WindowOpenDisposition disposition, | 37 WindowOpenDisposition disposition, |
| 38 const gfx::Rect& initial_rect, | 38 const gfx::Rect& initial_rect, |
| 39 bool user_gesture, | 39 bool user_gesture, |
| 40 bool* was_blocked) override; | 40 bool* was_blocked) override; |
| 41 | 41 |
| 42 void NavigationStateChanged(content::WebContents* source, | 42 void NavigationStateChanged(content::WebContents* source, |
| 43 content::InvalidateTypes changed_flags) override; | 43 content::InvalidateTypes changed_flags) override; |
| 44 void WebContentsCreated( | 44 void WebContentsCreated(content::WebContents* source_contents, |
| 45 content::WebContents* source_contents, | 45 int opener_render_process_id, |
| 46 int opener_render_process_id, | 46 int opener_render_frame_id, |
| 47 int opener_render_frame_id, | 47 const std::string& frame_name, |
| 48 const std::string& frame_name, | 48 const GURL& target_url, |
| 49 const GURL& target_url, | 49 content::WebContents* new_contents) override; |
| 50 content::WebContents* new_contents, | |
| 51 const base::Optional<content::WebContents::CreateParams>& create_params) | |
| 52 override; | |
| 53 | 50 |
| 54 void CloseContents(content::WebContents* source) override; | 51 void CloseContents(content::WebContents* source) override; |
| 55 void ActivateContents(content::WebContents* contents) override; | 52 void ActivateContents(content::WebContents* contents) override; |
| 56 void LoadingStateChanged(content::WebContents* source, | 53 void LoadingStateChanged(content::WebContents* source, |
| 57 bool to_different_document) override; | 54 bool to_different_document) override; |
| 58 bool ShouldResumeRequestsForCreatedWindow() override; | 55 bool ShouldResumeRequestsForCreatedWindow() override; |
| 59 void RequestMediaAccessPermission( | 56 void RequestMediaAccessPermission( |
| 60 content::WebContents* web_contents, | 57 content::WebContents* web_contents, |
| 61 const content::MediaStreamRequest& request, | 58 const content::MediaStreamRequest& request, |
| 62 const content::MediaResponseCallback& callback) override; | 59 const content::MediaResponseCallback& callback) override; |
| 63 void EnterFullscreenModeForTab(content::WebContents* web_contents, | 60 void EnterFullscreenModeForTab(content::WebContents* web_contents, |
| 64 const GURL& origin) override; | 61 const GURL& origin) override; |
| 65 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; | 62 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; |
| 66 bool IsFullscreenForTabOrPending( | 63 bool IsFullscreenForTabOrPending( |
| 67 const content::WebContents* web_contents) const override; | 64 const content::WebContents* web_contents) const override; |
| 68 | 65 |
| 69 private: | 66 private: |
| 70 bool is_fullscreen_; | 67 bool is_fullscreen_; |
| 71 }; | 68 }; |
| 72 | 69 |
| 73 bool RegisterAwWebContentsDelegate(JNIEnv* env); | 70 bool RegisterAwWebContentsDelegate(JNIEnv* env); |
| 74 | 71 |
| 75 } // namespace android_webview | 72 } // namespace android_webview |
| 76 | 73 |
| 77 #endif // ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ | 74 #endif // ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ |
| OLD | NEW |