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 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 29 matching lines...) Expand all Loading... |
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::WebContents* web_contents, |
47 const content::BluetoothChooser::EventHandler& event_handler, | 47 const content::BluetoothChooser::EventHandler& event_handler, |
48 const GURL& origin) override; | 48 const GURL& origin) override; |
49 void CloseContents(content::WebContents* web_contents) override; | 49 void CloseContents(content::WebContents* web_contents) override; |
| 50 bool ShouldFocusLocationBarByDefault(content::WebContents* source) override; |
50 blink::WebDisplayMode GetDisplayMode( | 51 blink::WebDisplayMode GetDisplayMode( |
51 const content::WebContents* web_contents) const override; | 52 const content::WebContents* web_contents) const override; |
52 void FindReply(content::WebContents* web_contents, | 53 void FindReply(content::WebContents* web_contents, |
53 int request_id, | 54 int request_id, |
54 int number_of_matches, | 55 int number_of_matches, |
55 const gfx::Rect& selection_rect, | 56 const gfx::Rect& selection_rect, |
56 int active_match_ordinal, | 57 int active_match_ordinal, |
57 bool final_update) override; | 58 bool final_update) override; |
58 void FindMatchRectsReply(content::WebContents* web_contents, | 59 void FindMatchRectsReply(content::WebContents* web_contents, |
59 int version, | 60 int version, |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 content::NotificationRegistrar notification_registrar_; | 100 content::NotificationRegistrar notification_registrar_; |
100 }; | 101 }; |
101 | 102 |
102 // Register the native methods through JNI. | 103 // Register the native methods through JNI. |
103 bool RegisterTabWebContentsDelegateAndroid(JNIEnv* env); | 104 bool RegisterTabWebContentsDelegateAndroid(JNIEnv* env); |
104 | 105 |
105 } // namespace android | 106 } // namespace android |
106 } // namespace chrome | 107 } // namespace chrome |
107 | 108 |
108 #endif // CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_ | 109 #endif // CHROME_BROWSER_ANDROID_TAB_WEB_CONTENTS_DELEGATE_ANDROID_H_ |
OLD | NEW |