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

Side by Side Diff: chrome/browser/android/tab_web_contents_delegate_android.h

Issue 1672103002: Pass the frame instead of the WebContents through RunBluetoothChooser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@doc-bubble-lifetimes
Patch Set: Fix Android Created 4 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/android/tab_web_contents_delegate_android.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 CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_ 5 #ifndef CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_
6 #define CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_ 6 #define CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 25 matching lines...) Expand all
36 public content::NotificationObserver { 36 public content::NotificationObserver {
37 public: 37 public:
38 TabWebContentsDelegateAndroid(JNIEnv* env, jobject obj); 38 TabWebContentsDelegateAndroid(JNIEnv* env, jobject obj);
39 ~TabWebContentsDelegateAndroid() override; 39 ~TabWebContentsDelegateAndroid() override;
40 40
41 void LoadingStateChanged(content::WebContents* source, 41 void LoadingStateChanged(content::WebContents* source,
42 bool to_different_document) override; 42 bool to_different_document) override;
43 void RunFileChooser(content::WebContents* web_contents, 43 void RunFileChooser(content::WebContents* web_contents,
44 const content::FileChooserParams& params) override; 44 const content::FileChooserParams& params) override;
45 scoped_ptr<content::BluetoothChooser> RunBluetoothChooser( 45 scoped_ptr<content::BluetoothChooser> RunBluetoothChooser(
46 content::WebContents* web_contents, 46 content::RenderFrameHost* frame,
47 const content::BluetoothChooser::EventHandler& event_handler, 47 const content::BluetoothChooser::EventHandler& event_handler) override;
48 const url::Origin& origin) override;
49 void CloseContents(content::WebContents* web_contents) override; 48 void CloseContents(content::WebContents* web_contents) override;
50 bool ShouldFocusLocationBarByDefault(content::WebContents* source) override; 49 bool ShouldFocusLocationBarByDefault(content::WebContents* source) override;
51 blink::WebDisplayMode GetDisplayMode( 50 blink::WebDisplayMode GetDisplayMode(
52 const content::WebContents* web_contents) const override; 51 const content::WebContents* web_contents) const override;
53 void FindReply(content::WebContents* web_contents, 52 void FindReply(content::WebContents* web_contents,
54 int request_id, 53 int request_id,
55 int number_of_matches, 54 int number_of_matches,
56 const gfx::Rect& selection_rect, 55 const gfx::Rect& selection_rect,
57 int active_match_ordinal, 56 int active_match_ordinal,
58 bool final_update) override; 57 bool final_update) override;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 content::NotificationRegistrar notification_registrar_; 100 content::NotificationRegistrar notification_registrar_;
102 }; 101 };
103 102
104 // Register the native methods through JNI. 103 // Register the native methods through JNI.
105 bool RegisterTabWebContentsDelegateAndroid(JNIEnv* env); 104 bool RegisterTabWebContentsDelegateAndroid(JNIEnv* env);
106 105
107 } // namespace android 106 } // namespace android
108 } // namespace chrome 107 } // namespace chrome
109 108
110 #endif // CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_ 109 #endif // CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/tab_web_contents_delegate_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698