| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |