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

Unified Diff: chrome/common/extensions/PRESUBMIT.py

Issue 10692104: Add isWritableFileEntry to the fileSystem API (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: added presubmit fix Created 8 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: chrome/common/extensions/PRESUBMIT.py
diff --git a/chrome/common/extensions/PRESUBMIT.py b/chrome/common/extensions/PRESUBMIT.py
index 8dc898968db59185bb37a1eee59de7269e4fe567..b621d4b658380159007497dabf0fb7794602b083 100644
--- a/chrome/common/extensions/PRESUBMIT.py
+++ b/chrome/common/extensions/PRESUBMIT.py
@@ -87,7 +87,7 @@ def IsSkippedFile(path, input_api):
def IsApiFile(path, input_api):
return (input_api.os_path.dirname(path) == API_DIR and
- path.endswith('.json'))
+ (path.endswith('.json') or path.endswith('.idl')))
def IsBuildFile(path, input_api):
return input_api.os_path.dirname(path) == BUILD_DIR
« no previous file with comments | « chrome/browser/extensions/api/file_system/file_system_apitest.cc ('k') | chrome/common/extensions/api/file_system.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698