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

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

Issue 2450623002: [MD Bookmarks] Add skeleton for Material Design Bookmarks (Closed)
Patch Set: Created 4 years, 2 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/log_web_ui_url.cc
diff --git a/chrome/browser/ui/webui/log_web_ui_url.cc b/chrome/browser/ui/webui/log_web_ui_url.cc
index 5ba33ae410e2242a4d6e39f30fa11c5c55c5bc4b..9fef8bb623cc2a8f9bb22cfab1fe8a25c53c1afc 100644
--- a/chrome/browser/ui/webui/log_web_ui_url.cc
+++ b/chrome/browser/ui/webui/log_web_ui_url.cc
@@ -27,8 +27,10 @@ bool LogWebUIUrl(const GURL& web_ui_url) {
web_ui_url.SchemeIs(content::kChromeDevToolsScheme);
#if defined(ENABLE_EXTENSIONS)
- if (web_ui_url.SchemeIs(extensions::kExtensionScheme))
- should_log = web_ui_url.host() == extension_misc::kBookmarkManagerId;
+ if (web_ui_url.SchemeIs(extensions::kExtensionScheme)) {
+ should_log = web_ui_url.host() == extension_misc::kBookmarkManagerId ||
+ web_ui_url.host() == extension_misc::kMDBookmarkManagerId;
+ }
#endif
if (should_log) {

Powered by Google App Engine
This is Rietveld 408576698