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

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

Issue 549803003: Rename tabBase to tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 24 matching lines...) Expand all
35 @Override 35 @Override
36 public void onWebContentsSwapped(Tab tab, boolean didStartLoad, boolean didF inishLoad) { } 36 public void onWebContentsSwapped(Tab tab, boolean didStartLoad, boolean didF inishLoad) { }
37 37
38 @Override 38 @Override
39 public void onContextMenuShown(Tab tab, ContextMenu menu) { } 39 public void onContextMenuShown(Tab tab, ContextMenu menu) { }
40 40
41 @Override 41 @Override
42 public void onWebContentsInstantSupportDisabled() { } 42 public void onWebContentsInstantSupportDisabled() { }
43 43
44 @Override 44 @Override
45 public void onLoadStarted(Tab tabBase) { } 45 public void onLoadStarted(Tab tab) { }
46 46
47 @Override 47 @Override
48 public void onLoadStopped(Tab tabBase) { } 48 public void onLoadStopped(Tab tab) { }
49 49
50 @Override 50 @Override
51 public void onLoadProgressChanged(Tab tab, int progress) { } 51 public void onLoadProgressChanged(Tab tab, int progress) { }
52 52
53 @Override 53 @Override
54 public void onUpdateUrl(Tab tab, String url) { } 54 public void onUpdateUrl(Tab tab, String url) { }
55 55
56 @Override 56 @Override
57 public void onToggleFullscreenMode(Tab tab, boolean enable) { } 57 public void onToggleFullscreenMode(Tab tab, boolean enable) { }
58 58
59 @Override 59 @Override
60 public void onDidFailLoad(Tab tab, boolean isProvisionalLoad, boolean isMain Frame, 60 public void onDidFailLoad(Tab tab, boolean isProvisionalLoad, boolean isMain Frame,
61 int errorCode, String description, String failingUrl) { } 61 int errorCode, String description, String failingUrl) { }
62 62
63 @Override 63 @Override
64 public void onDidStartProvisionalLoadForFrame(Tab tab, long frameId, long pa rentFrameId, 64 public void onDidStartProvisionalLoadForFrame(Tab tab, long frameId, long pa rentFrameId,
65 boolean isMainFrame, String validatedUrl, boolean isErrorPage, 65 boolean isMainFrame, String validatedUrl, boolean isErrorPage,
66 boolean isIframeSrcdoc) { } 66 boolean isIframeSrcdoc) { }
67 67
68 @Override 68 @Override
69 public void onDidChangeThemeColor(int color) { } 69 public void onDidChangeThemeColor(int color) { }
70 } 70 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698