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

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

Issue 1381003004: Better distinguish didFinishLoad and didStopLoading (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't pulse progress bar for same-document navs Created 5 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.tab; 5 package org.chromium.chrome.browser.tab;
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 import org.chromium.content_public.browser.LoadUrlParams; 10 import org.chromium.content_public.browser.LoadUrlParams;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 @Override 69 @Override
70 public void onContextMenuShown(Tab tab, ContextMenu menu) { } 70 public void onContextMenuShown(Tab tab, ContextMenu menu) { }
71 71
72 @Override 72 @Override
73 public void onContextualActionBarVisibilityChanged(Tab tab, boolean visible) { } 73 public void onContextualActionBarVisibilityChanged(Tab tab, boolean visible) { }
74 74
75 @Override 75 @Override
76 public void onWebContentsInstantSupportDisabled() { } 76 public void onWebContentsInstantSupportDisabled() { }
77 77
78 @Override 78 @Override
79 public void onLoadStarted(Tab tab) { } 79 public void onLoadStarted(Tab tab, boolean toDifferentDocument) { }
80 80
81 @Override 81 @Override
82 public void onLoadStopped(Tab tab) { } 82 public void onLoadStopped(Tab tab) { }
83 83
84 @Override 84 @Override
85 public void onLoadProgressChanged(Tab tab, int progress) { } 85 public void onLoadProgressChanged(Tab tab, int progress) { }
86 86
87 @Override 87 @Override
88 public void onUpdateUrl(Tab tab, String url) { } 88 public void onUpdateUrl(Tab tab, String url) { }
89 89
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 @Override 122 @Override
123 public void onDidStartNavigationToPendingEntry(Tab tab, String url) { } 123 public void onDidStartNavigationToPendingEntry(Tab tab, String url) { }
124 124
125 @Override 125 @Override
126 public void onBackgroundColorChanged(Tab tab, int color) { } 126 public void onBackgroundColorChanged(Tab tab, int color) { }
127 127
128 @Override 128 @Override
129 public void webContentsCreated(Tab tab, WebContents sourceWebContents, long openerRenderFrameId, 129 public void webContentsCreated(Tab tab, WebContents sourceWebContents, long openerRenderFrameId,
130 String frameName, String targetUrl, WebContents newWebContents) { } 130 String frameName, String targetUrl, WebContents newWebContents) { }
131 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698