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

Unified Diff: content/browser/android/web_contents_observer_android.cc

Issue 644813003: [Contextual Search] Passing HTTML status code to WebContentsObserverAndroid. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing typo Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/android/web_contents_observer_android.cc
diff --git a/content/browser/android/web_contents_observer_android.cc b/content/browser/android/web_contents_observer_android.cc
index 4e0bc4a4a6c96a9854c34bdf7d55f0c5445db956..964a0de232ac9fe77b794847afbfa226d499cf37 100644
--- a/content/browser/android/web_contents_observer_android.cc
+++ b/content/browser/android/web_contents_observer_android.cc
@@ -150,7 +150,8 @@ void WebContentsObserverAndroid::DidNavigateMainFrame(
(details.type == NAVIGATION_TYPE_IN_PAGE || details.is_in_page);
Java_WebContentsObserverAndroid_didNavigateMainFrame(
env, obj.obj(), jstring_url.obj(), jstring_base_url.obj(),
- details.is_navigation_to_different_page(), is_fragment_navigation);
+ details.is_navigation_to_different_page(), is_fragment_navigation,
+ details.http_status_code);
}
void WebContentsObserverAndroid::DidNavigateAnyFrame(
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698