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

Unified Diff: chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc

Issue 11828036: First cut at UI for saving net_logs data into a temporary file on (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | « chrome/browser/resources/web_dev_style/js_checker.py ('k') | chrome/browser/ui/webui/net_export_ui.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc
===================================================================
--- chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc (revision 179519)
+++ chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc (working copy)
@@ -78,6 +78,10 @@
#include "chrome/browser/ui/webui/uber/uber_ui.h"
#endif
+#if defined(OS_ANDROID) || defined(OS_IOS)
+#include "chrome/browser/ui/webui/net_export_ui.h"
+#endif
+
#if defined(OS_CHROMEOS)
#include "chrome/browser/ui/webui/chromeos/bluetooth_pairing_ui.h"
#include "chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.h"
@@ -219,6 +223,10 @@
if (url.host() == chrome::kChromeUINaClHost)
return &NewWebUI<NaClUI>;
#endif
+#if defined(OS_ANDROID) || defined(OS_IOS)
+ if (url.host() == chrome::kChromeUINetExportHost)
+ return &NewWebUI<NetExportUI>;
+#endif
if (url.host() == chrome::kChromeUINetInternalsHost)
return &NewWebUI<NetInternalsUI>;
if (url.host() == chrome::kChromeUIOmniboxHost)
« no previous file with comments | « chrome/browser/resources/web_dev_style/js_checker.py ('k') | chrome/browser/ui/webui/net_export_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698