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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/TabObserver.java

Issue 723973002: Adding support for opening URL in new tab from inline Content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the review comments. Created 6 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 package org.chromium.chrome.browser; 5 package org.chromium.chrome.browser;
6 6
7 import android.view.ContextMenu; 7 import android.view.ContextMenu;
8 8
9 import org.chromium.content.browser.ContentViewCore; 9 import org.chromium.content.browser.ContentViewCore;
10 10
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 * @param statusCode The HTTP status code of the navigation . 175 * @param statusCode The HTTP status code of the navigation .
176 */ 176 */
177 public void onDidNavigateMainFrame(Tab tab, String url, String baseUrl, 177 public void onDidNavigateMainFrame(Tab tab, String url, String baseUrl,
178 boolean isNavigationToDifferentPage, boolean isFragmentNavigation, i nt statusCode); 178 boolean isNavigationToDifferentPage, boolean isFragmentNavigation, i nt statusCode);
179 179
180 /** 180 /**
181 * Called when the theme color is changed 181 * Called when the theme color is changed
182 * @param color the new color in ARGB format. 182 * @param color the new color in ARGB format.
183 */ 183 */
184 public void onDidChangeThemeColor(int color); 184 public void onDidChangeThemeColor(int color);
185
186 public void webContentsCreated(Tab tab, long sourceWebContents, long openerR enderFrameId,
187 String frameName, String targetUrl, long newWebContents);
185 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698