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

Side by Side Diff: chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc

Issue 2038963002: [Offline Pages] Link the internals page with the offline model and request (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h" 5 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 #else 109 #else
110 #include "chrome/browser/signin/easy_unlock_service.h" 110 #include "chrome/browser/signin/easy_unlock_service.h"
111 #include "chrome/browser/signin/easy_unlock_service_factory.h" 111 #include "chrome/browser/signin/easy_unlock_service_factory.h"
112 #include "chrome/browser/ui/webui/copresence_ui.h" 112 #include "chrome/browser/ui/webui/copresence_ui.h"
113 #include "chrome/browser/ui/webui/devtools_ui.h" 113 #include "chrome/browser/ui/webui/devtools_ui.h"
114 #include "chrome/browser/ui/webui/inspect_ui.h" 114 #include "chrome/browser/ui/webui/inspect_ui.h"
115 #include "chrome/browser/ui/webui/md_downloads/md_downloads_ui.h" 115 #include "chrome/browser/ui/webui/md_downloads/md_downloads_ui.h"
116 #include "chrome/browser/ui/webui/md_feedback/md_feedback_ui.h" 116 #include "chrome/browser/ui/webui/md_feedback/md_feedback_ui.h"
117 #include "chrome/browser/ui/webui/md_history_ui.h" 117 #include "chrome/browser/ui/webui/md_history_ui.h"
118 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" 118 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
119 #include "chrome/browser/ui/webui/offline_internals_ui.h"
dpapad 2016/06/09 23:36:30 Isn't this WebUI page only for Android?
119 #include "chrome/browser/ui/webui/quota_internals/quota_internals_ui.h" 120 #include "chrome/browser/ui/webui/quota_internals/quota_internals_ui.h"
120 #include "chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_in ternals_ui.h" 121 #include "chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_in ternals_ui.h"
121 #include "chrome/browser/ui/webui/system_info_ui.h" 122 #include "chrome/browser/ui/webui/system_info_ui.h"
122 #include "chrome/browser/ui/webui/uber/uber_ui.h" 123 #include "chrome/browser/ui/webui/uber/uber_ui.h"
123 #endif 124 #endif
124 125
125 #if defined(OS_CHROMEOS) 126 #if defined(OS_CHROMEOS)
126 #include "base/sys_info.h" 127 #include "base/sys_info.h"
127 #include "chrome/browser/ui/webui/chromeos/bluetooth_pairing_ui.h" 128 #include "chrome/browser/ui/webui/chromeos/bluetooth_pairing_ui.h"
128 #include "chrome/browser/ui/webui/chromeos/certificate_manager_dialog_ui.h" 129 #include "chrome/browser/ui/webui/chromeos/certificate_manager_dialog_ui.h"
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 #endif 800 #endif
800 801
801 // Android doesn't use the plugins pages. 802 // Android doesn't use the plugins pages.
802 if (page_url.host() == chrome::kChromeUIPluginsHost) 803 if (page_url.host() == chrome::kChromeUIPluginsHost)
803 return PluginsUI::GetFaviconResourceBytes(scale_factor); 804 return PluginsUI::GetFaviconResourceBytes(scale_factor);
804 805
805 #endif 806 #endif
806 807
807 return NULL; 808 return NULL;
808 } 809 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698