| Index: components/browser_watcher/exit_code_watcher_win.h
|
| diff --git a/components/browser_watcher/exit_code_watcher_win.h b/components/browser_watcher/exit_code_watcher_win.h
|
| index 644b2a55bb885fb442d0e400131a55c96e2bf371..6d8b44caec28183db49f2f79c7453dc43e15a553 100644
|
| --- a/components/browser_watcher/exit_code_watcher_win.h
|
| +++ b/components/browser_watcher/exit_code_watcher_win.h
|
| @@ -17,7 +17,7 @@ namespace browser_watcher {
|
| class ExitCodeWatcher {
|
| public:
|
| // Initialize the watcher with a registry path.
|
| - explicit ExitCodeWatcher(const base::char16* registry_path);
|
| + explicit ExitCodeWatcher(const base::string16& registry_path);
|
| ~ExitCodeWatcher();
|
|
|
| // Initializes from arguments on |cmd_line|, returns true on success.
|
| @@ -40,7 +40,7 @@ class ExitCodeWatcher {
|
| bool WriteProcessExitCode(int exit_code);
|
|
|
| // The registry path the exit codes are written to.
|
| - base::string16 registry_path_;
|
| + const base::string16 registry_path_;
|
|
|
| // Watched process and its creation time.
|
| base::Process process_;
|
|
|