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

Unified Diff: ppapi/PRESUBMIT.py

Issue 13490003: Apps v2 in Pepper: Add C/C++ definition for chrome.socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 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/PRESUBMIT.py
diff --git a/ppapi/PRESUBMIT.py b/ppapi/PRESUBMIT.py
index 9b6f716f050cbb4de11a681a91b2c43a53d4df68..d3370b624f28cfb34437efa4af2cc017ef00a0d1 100644
--- a/ppapi/PRESUBMIT.py
+++ b/ppapi/PRESUBMIT.py
@@ -65,6 +65,8 @@ def CheckTODO(input_api, output_api):
# Only examine public stable interfaces.
if name_parts[2] in ['dev', 'private', 'trusted']:
continue
+ if name_parts[2] == 'extensions' and name_parts[3] == 'dev':
+ continue
filepath = os.path.join('..', filename)
if RE_TODO.search(open(filepath, 'rb').read()):
« no previous file with comments | « no previous file | ppapi/api/extensions/dev/ppb_ext_socket_dev.idl » ('j') | ppapi/cpp/extensions/dev/socket_dev.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698