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

Unified Diff: ppapi/native_client/src/trusted/plugin/plugin.cc

Issue 19079002: Enable pnacl by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update with code review feedback. Created 7 years, 5 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: ppapi/native_client/src/trusted/plugin/plugin.cc
diff --git a/ppapi/native_client/src/trusted/plugin/plugin.cc b/ppapi/native_client/src/trusted/plugin/plugin.cc
index 09a07244ccdc12c47bd6c9831f7a783a15061ed4..0905c6da7f778d539d785f09cca10ac9fa188f38 100644
--- a/ppapi/native_client/src/trusted/plugin/plugin.cc
+++ b/ppapi/native_client/src/trusted/plugin/plugin.cc
@@ -1213,9 +1213,9 @@ void Plugin::ProcessNaClManifest(const nacl::string& manifest_json) {
translate_callback));
return;
} else {
- error_info.SetReport(ERROR_PNACL_NOT_ENABLED,
- "PNaCl has not been enabled (e.g., by setting "
- "the --enable-pnacl flag).");
+ error_info.SetReport(ERROR_PNACL_DISABLED,
+ "PNaCl has been disabled (e.g., by setting "
+ "the --disable-pnacl flag).");
}
} else {
// Try the fast path first. This will only block if the file is installed.

Powered by Google App Engine
This is Rietveld 408576698