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

Unified Diff: content/browser/net/network_errors_listing_ui.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/net/network_errors_listing_ui.cc
diff --git a/content/browser/net/network_errors_listing_ui.cc b/content/browser/net/network_errors_listing_ui.cc
index 976970151cdbe00f96c32914a4f3597815fe887f..f791d20256e6fb6e365f5265323367a63484e7ac 100644
--- a/content/browser/net/network_errors_listing_ui.cc
+++ b/content/browser/net/network_errors_listing_ui.cc
@@ -57,7 +57,7 @@ std::unique_ptr<base::ListValue> GetNetworkErrorData() {
return error_list;
}
-bool HandleRequestCallback(BrowserContext* current_context,
+bool HandleWebUIRequestCallback(BrowserContext* current_context,
const std::string& path,
const WebUIDataSource::GotDataCallback& callback) {
if (path != kDataFile)
@@ -87,7 +87,7 @@ NetworkErrorsListingUI::NetworkErrorsListingUI(WebUI* web_ui)
IDR_NETWORK_ERROR_LISTING_JS);
html_source->SetDefaultResource(IDR_NETWORK_ERROR_LISTING_HTML);
html_source->SetRequestFilter(
- base::Bind(&HandleRequestCallback,
+ base::Bind(&HandleWebUIRequestCallback,
web_ui->GetWebContents()->GetBrowserContext()));
BrowserContext* browser_context =

Powered by Google App Engine
This is Rietveld 408576698