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

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

Issue 518653002: Add the "options_ui" extension manifest field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build issue? Created 6 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: chrome/browser/ui/webui/extensions/extension_basic_info.cc
diff --git a/chrome/browser/ui/webui/extensions/extension_basic_info.cc b/chrome/browser/ui/webui/extensions/extension_basic_info.cc
index 67fe09af877c376405fca60829d56a884e59c276..768e2fda6f989d46788d16d4992607825c42f0f8 100644
--- a/chrome/browser/ui/webui/extensions/extension_basic_info.cc
+++ b/chrome/browser/ui/webui/extensions/extension_basic_info.cc
@@ -9,6 +9,7 @@
#include "extensions/common/extension.h"
#include "extensions/common/manifest_handlers/kiosk_mode_info.h"
#include "extensions/common/manifest_handlers/offline_enabled_info.h"
+#include "extensions/common/manifest_handlers/options_page_info.h"
namespace {
@@ -46,7 +47,7 @@ void GetExtensionBasicInfo(const Extension* extension,
info->SetString(kDescriptionKey, extension->description());
info->SetString(
kOptionsUrlKey,
- ManifestURL::GetOptionsPage(extension).possibly_invalid_spec());
+ OptionsPageInfo::GetOptionsPage(extension).possibly_invalid_spec());
info->SetString(
kHomepageUrlKey,
ManifestURL::GetHomepageURL(extension).possibly_invalid_spec());
« no previous file with comments | « chrome/browser/ui/extensions/application_launch.cc ('k') | chrome/browser/ui/webui/extensions/extension_settings_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698