Chromium Code Reviews

Side by Side Diff: android_webview/native/aw_web_contents_delegate.h

Issue 1153813003: Add user_gesture param to WebContentsDelegate::ActivateContents Base URL: https://chromium.googlesource.com/chromium/src.git@ug1_WebContentsImpl_Activate
Patch Set: Update callers Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | android_webview/native/aw_web_contents_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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...)
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_
OLDNEW
« no previous file with comments | « no previous file | android_webview/native/aw_web_contents_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine