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

Unified Diff: chrome/browser/shell_integration_win.cc

Issue 2479773002: Add chrome namespace to chrome/common/shell_handler_win.mojom (Closed)
Patch Set: Add chrome namespace to chrome/common/shell_handler_win.mojom Created 4 years, 1 month 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/shell_integration_win.cc
diff --git a/chrome/browser/shell_integration_win.cc b/chrome/browser/shell_integration_win.cc
index 68fc2cee91727d6b6822508416f4cefe3f3385c1..8059a0daa067bee31a2b5d606ad6ef186ffc8496 100644
--- a/chrome/browser/shell_integration_win.cc
+++ b/chrome/browser/shell_integration_win.cc
@@ -440,7 +440,7 @@ void RecordPinnedToTaskbarProcessError(bool error) {
// to this function holds a reference to the ShellHandlerClient to keep it alive
// until invokation.
void OnIsPinnedToTaskbarResult(
- content::UtilityProcessMojoClient<mojom::ShellHandler>* client,
+ content::UtilityProcessMojoClient<chrome::mojom::ShellHandler>* client,
bool succeeded,
bool is_pinned_to_taskbar) {
// Clean up the utility process.
@@ -460,7 +460,7 @@ void OnIsPinnedToTaskbarResult(
// to this function is mutially exclusive with a call to
// OnIsPinnedToTaskbarResult().
void OnShellHandlerConnectionError(
- content::UtilityProcessMojoClient<mojom::ShellHandler>* client) {
+ content::UtilityProcessMojoClient<chrome::mojom::ShellHandler>* client) {
// Clean up the utility process.
delete client;
@@ -715,8 +715,8 @@ void RecordIsPinnedToTaskbarHistogram() {
// The code to check if Chrome is pinned to the taskbar brings in shell
// extensions which can hinder stability so it is executed in a utility
// process.
- content::UtilityProcessMojoClient<mojom::ShellHandler>* client =
- new content::UtilityProcessMojoClient<mojom::ShellHandler>(
+ content::UtilityProcessMojoClient<chrome::mojom::ShellHandler>* client =
+ new content::UtilityProcessMojoClient<chrome::mojom::ShellHandler>(
l10n_util::GetStringUTF16(IDS_UTILITY_PROCESS_SHELL_HANDLER_NAME));
client->set_error_callback(
« no previous file with comments | « chrome/browser/chrome_content_utility_manifest_overlay.json ('k') | chrome/browser/ui/webui/welcome_win10_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698