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