Chromium Code Reviews| 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_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ |
| 6 #define CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ | 6 #define CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include "base/android/jni_weak_ref.h" | 10 #include "base/android/jni_weak_ref.h" |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 140 jint page_transition, | 140 jint page_transition, |
| 141 jstring j_referrer_url, | 141 jstring j_referrer_url, |
| 142 jint referrer_policy, | 142 jint referrer_policy, |
| 143 jboolean is_renderer_initiated); | 143 jboolean is_renderer_initiated); |
| 144 ToolbarModel::SecurityLevel GetSecurityLevel(JNIEnv* env, jobject obj); | 144 ToolbarModel::SecurityLevel GetSecurityLevel(JNIEnv* env, jobject obj); |
| 145 void SetActiveNavigationEntryTitleForUrl(JNIEnv* env, | 145 void SetActiveNavigationEntryTitleForUrl(JNIEnv* env, |
| 146 jobject obj, | 146 jobject obj, |
| 147 jstring jurl, | 147 jstring jurl, |
| 148 jstring jtitle); | 148 jstring jtitle); |
| 149 bool Print(JNIEnv* env, jobject obj); | 149 bool Print(JNIEnv* env, jobject obj); |
| 150 | 150 void MakeLoadURLParam( |
|
Bernhard Bauer
2014/07/10 18:39:30
This section is for methods called from Java via J
Jitu( very slow this week)
2014/07/11 06:19:14
Done.
| |
| 151 chrome::NavigateParams* params, | |
| 152 content::NavigationController::LoadURLParams* load_url_params); | |
| 151 // Register the Tab's native methods through JNI. | 153 // Register the Tab's native methods through JNI. |
| 152 static bool RegisterTabAndroid(JNIEnv* env); | 154 static bool RegisterTabAndroid(JNIEnv* env); |
| 153 | 155 |
| 154 private: | 156 private: |
| 155 prerender::PrerenderManager* GetPrerenderManager() const; | 157 prerender::PrerenderManager* GetPrerenderManager() const; |
| 156 | 158 |
| 157 JavaObjectWeakGlobalRef weak_java_tab_; | 159 JavaObjectWeakGlobalRef weak_java_tab_; |
| 158 | 160 |
| 159 // The identifier used by session restore for this tab. | 161 // The identifier used by session restore for this tab. |
| 160 SessionID session_tab_id_; | 162 SessionID session_tab_id_; |
| 161 | 163 |
| 162 // Identifier of the window the tab is in. | 164 // Identifier of the window the tab is in. |
| 163 SessionID session_window_id_; | 165 SessionID session_window_id_; |
| 164 | 166 |
| 165 content::NotificationRegistrar notification_registrar_; | 167 content::NotificationRegistrar notification_registrar_; |
| 166 | 168 |
| 167 scoped_ptr<content::WebContents> web_contents_; | 169 scoped_ptr<content::WebContents> web_contents_; |
| 168 scoped_ptr<chrome::android::ChromeWebContentsDelegateAndroid> | 170 scoped_ptr<chrome::android::ChromeWebContentsDelegateAndroid> |
| 169 web_contents_delegate_; | 171 web_contents_delegate_; |
| 170 | 172 |
| 171 scoped_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_; | 173 scoped_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_; |
| 172 | 174 |
| 173 DISALLOW_COPY_AND_ASSIGN(TabAndroid); | 175 DISALLOW_COPY_AND_ASSIGN(TabAndroid); |
| 174 }; | 176 }; |
| 175 | 177 |
| 176 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ | 178 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ |
| OLD | NEW |