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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/EmptyTabObserver.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 /** 9 /**
10 * An implementation of the {@link TabObserver} which has empty implementations of all methods. 10 * An implementation of the {@link TabObserver} which has empty implementations of all methods.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 @Override 68 @Override
69 public void onDidCommitProvisionalLoadForFrame(Tab tab, long frameId, boolea n isMainFrame, 69 public void onDidCommitProvisionalLoadForFrame(Tab tab, long frameId, boolea n isMainFrame,
70 String url, int transitionType) { } 70 String url, int transitionType) { }
71 71
72 @Override 72 @Override
73 public void onDidNavigateMainFrame(Tab tab, String url, String baseUrl, 73 public void onDidNavigateMainFrame(Tab tab, String url, String baseUrl,
74 boolean isNavigationToDifferentPage, boolean isFragmentNavigation, i nt statusCode) { } 74 boolean isNavigationToDifferentPage, boolean isFragmentNavigation, i nt statusCode) { }
75 75
76 @Override 76 @Override
77 public void onDidChangeThemeColor(int color) { } 77 public void onDidChangeThemeColor(int color) { }
78
79 @Override
80 public void webContentsCreated(Tab tab, long sourceWebContents, long openerR enderFrameId,
81 String frameName, String targetUrl, long newWebContents) { }
78 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698