| 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(
|
|
|