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

Unified Diff: ppapi/generators/idl_c_proto.py

Issue 231243002: PPAPI: Move some of NexeFileDidOpen to NexeLoadManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix crash Created 6 years, 8 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 | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/generators/test_cgen_range/dev_channel_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/generators/idl_c_proto.py
diff --git a/ppapi/generators/idl_c_proto.py b/ppapi/generators/idl_c_proto.py
index d7aa0e72d6927c803bcf73f2376a75f89ca05d65..a6179a8f4b677fde965621e9721bb05a767b8435 100755
--- a/ppapi/generators/idl_c_proto.py
+++ b/ppapi/generators/idl_c_proto.py
@@ -642,7 +642,7 @@ class CGen(object):
# Add indentation
line = tab + line
space_break = line.rfind(' ', 0, 80)
- if len(line) <= 80 or 'http' in line:
+ if len(line) <= 80 or 'http://' in line:
# Ignore normal line and URLs permitted by the style guide.
lines.append(line.rstrip())
elif not '(' in line and space_break >= 0:
« no previous file with comments | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/generators/test_cgen_range/dev_channel_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698