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

Unified Diff: chrome/common/chrome_paths.cc

Issue 2451363002: [DevTools] Move main target/connection to TargetManager. (Closed)
Patch Set: Created 4 years, 2 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/common/chrome_paths.cc
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
index 6f046544ac3c6e8fd4bdc0edba95ec47f49f2b20..d7b8ff36c85db12eac7dde87ddf93dd68c0e9d48 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -259,10 +259,11 @@ bool PathProvider(int key, base::FilePath* result) {
cur = cur.Append(FILE_PATH_LITERAL("resources"));
#endif
break;
- case chrome::DIR_INSPECTOR:
+ case chrome::DIR_INSPECTOR_DEBUG:
if (!PathService::Get(chrome::DIR_RESOURCES, &cur))
return false;
cur = cur.Append(FILE_PATH_LITERAL("inspector"));
+ cur = cur.Append(FILE_PATH_LITERAL("debug"));
break;
case chrome::DIR_APP_DICTIONARIES:
#if defined(OS_POSIX)

Powered by Google App Engine
This is Rietveld 408576698