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

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

Issue 2038233002: Using ResourceRequestBody as the type of HTTP body outside of //content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@make-resource-request-body-public
Patch Set: Rebasing... Created 4 years, 6 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 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 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 const base::android::JavaParamRef<jobject>& obj, 174 const base::android::JavaParamRef<jobject>& obj,
175 jboolean delete_native); 175 jboolean delete_native);
176 base::android::ScopedJavaLocalRef<jobject> GetProfileAndroid( 176 base::android::ScopedJavaLocalRef<jobject> GetProfileAndroid(
177 JNIEnv* env, 177 JNIEnv* env,
178 const base::android::JavaParamRef<jobject>& obj); 178 const base::android::JavaParamRef<jobject>& obj);
179 TabLoadStatus LoadUrl( 179 TabLoadStatus LoadUrl(
180 JNIEnv* env, 180 JNIEnv* env,
181 const base::android::JavaParamRef<jobject>& obj, 181 const base::android::JavaParamRef<jobject>& obj,
182 const base::android::JavaParamRef<jstring>& url, 182 const base::android::JavaParamRef<jstring>& url,
183 const base::android::JavaParamRef<jstring>& j_extra_headers, 183 const base::android::JavaParamRef<jstring>& j_extra_headers,
184 const base::android::JavaParamRef<jbyteArray>& j_post_data, 184 const base::android::JavaParamRef<jobject>& j_post_data,
185 jint page_transition, 185 jint page_transition,
186 const base::android::JavaParamRef<jstring>& j_referrer_url, 186 const base::android::JavaParamRef<jstring>& j_referrer_url,
187 jint referrer_policy, 187 jint referrer_policy,
188 jboolean is_renderer_initiated, 188 jboolean is_renderer_initiated,
189 jboolean should_replace_current_entry, 189 jboolean should_replace_current_entry,
190 jlong intent_received_timestamp, 190 jlong intent_received_timestamp,
191 jboolean has_user_gesture); 191 jboolean has_user_gesture);
192 void SetActiveNavigationEntryTitleForUrl( 192 void SetActiveNavigationEntryTitleForUrl(
193 JNIEnv* env, 193 JNIEnv* env,
194 const base::android::JavaParamRef<jobject>& obj, 194 const base::android::JavaParamRef<jobject>& obj,
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 std::unique_ptr<content::WebContents> web_contents_; 282 std::unique_ptr<content::WebContents> web_contents_;
283 std::unique_ptr<chrome::android::TabWebContentsDelegateAndroid> 283 std::unique_ptr<chrome::android::TabWebContentsDelegateAndroid>
284 web_contents_delegate_; 284 web_contents_delegate_;
285 285
286 std::unique_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_; 286 std::unique_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_;
287 287
288 DISALLOW_COPY_AND_ASSIGN(TabAndroid); 288 DISALLOW_COPY_AND_ASSIGN(TabAndroid);
289 }; 289 };
290 290
291 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ 291 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698