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

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 2079233004: Add the Windows.IsPinnedToTaskbar metric. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Grt's comments 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 side-by-side diff with in-line comments
Download patch
Index: chrome/utility/chrome_content_utility_client.cc
diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc
index 3c260e19ae36b8f38aabc59087bce4a10651279c..15ff940a04461e8248f488c6284ee10030f7d62c 100644
--- a/chrome/utility/chrome_content_utility_client.cc
+++ b/chrome/utility/chrome_content_utility_client.cc
@@ -38,6 +38,7 @@
#endif
#if defined(OS_WIN)
+#include "chrome/utility/shell_handler_impl_win.h"
#include "chrome/utility/shell_handler_win.h"
#endif
@@ -208,6 +209,9 @@ void ChromeContentUtilityClient::RegisterMojoServices(
#endif
registry->AddService(base::Bind(&CreateImageDecoder));
registry->AddService(base::Bind(&safe_json::SafeJsonParserMojoImpl::Create));
+#if defined(OS_WIN)
+ registry->AddService(base::Bind(&ShellHandlerImpl::Create));
+#endif
}
void ChromeContentUtilityClient::AddHandler(

Powered by Google App Engine
This is Rietveld 408576698