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

Unified Diff: components/browser_watcher/exit_code_watcher_win.cc

Issue 1630923002: Remove PRODUCT_STRING_PATH from chrome_constants.h on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@c2_rm_PSP_profile_resetter
Patch Set: rebase on r373339 and rm unused install_util.h include Created 4 years, 11 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: components/browser_watcher/exit_code_watcher_win.cc
diff --git a/components/browser_watcher/exit_code_watcher_win.cc b/components/browser_watcher/exit_code_watcher_win.cc
index 0e2318472f455a2c9f40b4b2b12622aa9eca7e68..70366de8ada87ec92f913f022e43eac9fc1a080e 100644
--- a/components/browser_watcher/exit_code_watcher_win.cc
+++ b/components/browser_watcher/exit_code_watcher_win.cc
@@ -22,8 +22,8 @@ base::string16 GetValueName(const base::Time creation_time,
} // namespace
-ExitCodeWatcher::ExitCodeWatcher(const base::char16* registry_path) :
- registry_path_(registry_path), exit_code_(STILL_ACTIVE) {
+ExitCodeWatcher::ExitCodeWatcher(base::StringPiece16 registry_path) :
+ registry_path_(registry_path.as_string()), exit_code_(STILL_ACTIVE) {
}
ExitCodeWatcher::~ExitCodeWatcher() {

Powered by Google App Engine
This is Rietveld 408576698