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

Unified Diff: components/nacl/renderer/json_manifest.cc

Issue 299703016: Gate disabling nacl code on proper gyp flags, etc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix guard on flags code Created 6 years, 7 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
« no previous file with comments | « components/nacl/nacl_defines.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/renderer/json_manifest.cc
diff --git a/components/nacl/renderer/json_manifest.cc b/components/nacl/renderer/json_manifest.cc
index 8459f1ff37c2d58ec5e30d836b73c61c774284b8..951894679760a82f6db2cf8f0afe7de9da57bbce 100644
--- a/components/nacl/renderer/json_manifest.cc
+++ b/components/nacl/renderer/json_manifest.cc
@@ -452,7 +452,7 @@ bool JsonManifest::ResolveKey(const std::string& key,
if (key == kProgramKey)
return GetKeyUrl(dictionary_, key, full_url, pnacl_options);
- std::string::const_iterator p = find(key.begin(), key.end(), '/');
+ std::string::const_iterator p = std::find(key.begin(), key.end(), '/');
if (p == key.end()) {
VLOG(1) << "ResolveKey failed: invalid key, no slash: " << key;
return false;
« no previous file with comments | « components/nacl/nacl_defines.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698