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

Unified Diff: chrome/browser/browser_about_handler.cc

Issue 2814047: Cleanup: Remove about:network.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/views/about_network_dialog.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_about_handler.cc
===================================================================
--- chrome/browser/browser_about_handler.cc (revision 51548)
+++ chrome/browser/browser_about_handler.cc (working copy)
@@ -56,7 +56,6 @@
#if defined(OS_WIN)
#include "chrome/browser/views/about_ipc_dialog.h"
-#include "chrome/browser/views/about_network_dialog.h"
#elif defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/network_library.h"
@@ -1090,18 +1089,9 @@
// This function gets called with the fixed-up chrome: URLs, so we have to
// compare against those instead of "about:blah".
bool HandleNonNavigationAboutURL(const GURL& url) {
- // About:network and IPC and currently buggy, so we disable it for official
- // builds.
+ // about:ipc is currently buggy, so we disable it for official builds.
#if !defined(OFFICIAL_BUILD)
-#if defined(OS_WIN)
- if (LowerCaseEqualsASCII(url.spec(), chrome::kChromeUINetworkURL)) {
- // Run the dialog. This will re-use the existing one if it's already up.
- AboutNetworkDialog::RunDialog();
- return true;
- }
-#endif
-
#if (defined(OS_MACOSX) || defined(OS_WIN)) && defined(IPC_MESSAGE_LOG_ENABLED)
if (LowerCaseEqualsASCII(url.spec(), chrome::kChromeUIIPCURL)) {
// Run the dialog. This will re-use the existing one if it's already up.
« no previous file with comments | « no previous file | chrome/browser/views/about_network_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698