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

Unified Diff: chrome/browser/android/tab_android.cc

Issue 2088443003: Shortcut ctrl+shift+T added on android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: UMA added correctly, nit changes. Created 4 years, 5 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
Index: chrome/browser/android/tab_android.cc
diff --git a/chrome/browser/android/tab_android.cc b/chrome/browser/android/tab_android.cc
index d32ae561d11ee484dd2719d21cf82280f55893a6..51a058281db28c5d1318eda59521e86b1109cb84 100644
--- a/chrome/browser/android/tab_android.cc
+++ b/chrome/browser/android/tab_android.cc
@@ -98,8 +98,10 @@ using content::WebContents;
using navigation_interception::InterceptNavigationDelegate;
using navigation_interception::NavigationParams;
-TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) {
- CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(web_contents);
+TabAndroid* TabAndroid::FromWebContents(
+ const content::WebContents* web_contents) {
+ const CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(
+ web_contents);
if (!core_tab_helper)
return NULL;

Powered by Google App Engine
This is Rietveld 408576698