Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

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

Issue 1126383005: [Android WebView] Send WebChromeClient.onReceivedTitle when navigating back (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) override;
53 void LoadingStateChanged(content::WebContents* source,
54 bool to_different_document) override;
53 void RequestMediaAccessPermission( 55 void RequestMediaAccessPermission(
54 content::WebContents* web_contents, 56 content::WebContents* web_contents,
55 const content::MediaStreamRequest& request, 57 const content::MediaStreamRequest& request,
56 const content::MediaResponseCallback& callback) override; 58 const content::MediaResponseCallback& callback) override;
57 void EnterFullscreenModeForTab(content::WebContents* web_contents, 59 void EnterFullscreenModeForTab(content::WebContents* web_contents,
58 const GURL& origin) override; 60 const GURL& origin) override;
59 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; 61 void ExitFullscreenModeForTab(content::WebContents* web_contents) override;
60 bool IsFullscreenForTabOrPending( 62 bool IsFullscreenForTabOrPending(
61 const content::WebContents* web_contents) const override; 63 const content::WebContents* web_contents) const override;
62 64
63 private: 65 private:
64 bool is_fullscreen_; 66 bool is_fullscreen_;
65 }; 67 };
66 68
67 bool RegisterAwWebContentsDelegate(JNIEnv* env); 69 bool RegisterAwWebContentsDelegate(JNIEnv* env);
68 70
69 } // namespace android_webview 71 } // namespace android_webview
70 72
71 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ 73 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698