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

Unified Diff: chrome/common/chrome_paths.cc

Issue 8348026: Add a component installer for Portable NaCl. Registration of installer is (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes to rebase Created 9 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/common/chrome_paths.cc
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
index 77d8d385dd306afe6666de523c1e9fe6f2b0f3a1..9cc907eb2dc7ab4c7f33caf8616fa7bf0aa12dbc 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -242,6 +242,11 @@ bool PathProvider(int key, FilePath* result) {
return false;
cur = cur.Append(kInternalNaClPluginFileName);
break;
+ // TODO(jvoung): Do we want a default value or just the ability to
+ // override immediately when testing on bots to avoid race conditions?
+ case chrome::FILE_PNACL_COMPONENT:
+ return false;
+ break;
#if defined(OS_POSIX) && !defined(OS_MACOSX)
case chrome::FILE_NACL_HELPER:
if (!PathService::Get(base::DIR_MODULE, &cur))

Powered by Google App Engine
This is Rietveld 408576698