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

Unified Diff: chrome/browser/ui/webui/extensions/extension_activity_ui.cc

Issue 10913275: Ben's fixes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « chrome/browser/resources/file_manager/video_player.html ('k') | chrome/common/extensions/extension.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/extensions/extension_activity_ui.cc
diff --git a/chrome/browser/ui/webui/extensions/extension_activity_ui.cc b/chrome/browser/ui/webui/extensions/extension_activity_ui.cc
index 93dd822733ee9dce50677ccb24bd144c72e79342..b6514174ceed15c85267f6e409ff0b3933e9e1c3 100644
--- a/chrome/browser/ui/webui/extensions/extension_activity_ui.cc
+++ b/chrome/browser/ui/webui/extensions/extension_activity_ui.cc
@@ -11,6 +11,7 @@
#include "chrome/browser/ui/webui/chrome_web_ui_data_source.h"
#include "chrome/browser/ui/webui/extensions/extension_icon_source.h"
#include "chrome/browser/ui/webui/shared_resources_data_source.h"
+#include "chrome/browser/ui/webui/theme_source.h"
#include "chrome/common/extensions/extension_constants.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/web_ui.h"
@@ -43,6 +44,9 @@ ExtensionActivityUI::ExtensionActivityUI(content::WebUI* web_ui)
Profile* profile = Profile::FromWebUI(web_ui);
ChromeURLDataManager::AddDataSource(profile, source);
ChromeURLDataManager::AddDataSource(profile, new SharedResourcesDataSource());
+#if defined(OS_CHROMEOS)
+ ChromeURLDataManager::AddDataSource(profile, new ThemeSource(profile));
+#endif
// Callback handlers.
web_ui->RegisterMessageCallback("requestExtensionData",
« no previous file with comments | « chrome/browser/resources/file_manager/video_player.html ('k') | chrome/common/extensions/extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698