diff options
author | tapted <tapted@chromium.org> | 2015-05-19 06:08:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-19 13:08:19 +0000 |
commit | 574f09c11f5a366b059d0992c180543697666c8a (patch) | |
tree | 37860c85bf7ccd1c0dabdaf3b9482cc483d252d3 /extensions/shell/app | |
parent | 2878cede2eca4465dfd353bd3354e61eaa447844 (diff) | |
download | chromium_src-574f09c11f5a366b059d0992c180543697666c8a.zip chromium_src-574f09c11f5a366b059d0992c180543697666c8a.tar.gz chromium_src-574f09c11f5a366b059d0992c180543697666c8a.tar.bz2 |
Subject .mm files to the header sorting presubmit
The presubmit is already robust to handle Objective-C .h files. Not
checking .mm files just adds extra review burden. Plus I can't just
press F5 in Sublime to sort lines in .mm files due to import vs include,
so it actually needs some brainpower when adding something and I keep
forgetting to do that.
This adds .mm to the list of file extensions the header sorting
presubmit checks for, and fixes the current mistakes to avoid annoying
people on presubmit with this change.
BUG=None
TBR=keybuk@chromium.org,jamescook@chromium.org,stuartmorgan@chromium.org,xhwang@chromium.org,rsesek@chromium.org,zea@chromium.org
R=thakis@chromium.org,jochen@chromium.org
Review URL: https://codereview.chromium.org/1133713009
Cr-Commit-Position: refs/heads/master@{#330509}
Diffstat (limited to 'extensions/shell/app')
-rw-r--r-- | extensions/shell/app/paths_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/shell/app/paths_mac.mm b/extensions/shell/app/paths_mac.mm index d10c3c8..32061e0 100644 --- a/extensions/shell/app/paths_mac.mm +++ b/extensions/shell/app/paths_mac.mm @@ -6,9 +6,9 @@ #include "base/files/file_path.h" #include "base/logging.h" -#include "base/path_service.h" #include "base/mac/bundle_locations.h" #include "base/mac/foundation_util.h" +#include "base/path_service.h" #include "content/public/common/content_paths.h" namespace extensions { |