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

Unified Diff: tools/sort-headers.py

Issue 7048007: Move scoped_temp_dir and scoped_native_library back from base/memory to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unknwn Created 9 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 | « remoting/host/json_host_config_unittest.cc ('k') | ui/base/resource/data_pack_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/sort-headers.py
diff --git a/tools/sort-headers.py b/tools/sort-headers.py
index 34bfeaeb3df9b73a50b20894a112afef7247ad40..b68de63d57289c7b873a4f6c6ed041a38f0a139d 100755
--- a/tools/sort-headers.py
+++ b/tools/sort-headers.py
@@ -42,7 +42,9 @@ def IncludeCompareKey(line):
# <windows.h> needs to be before other includes, so return a key
# that's less than all other keys.
if line.lstrip().startswith('<windows.h>'):
- return ''
+ return ' 0'
+ if line.lstrip().startswith('<unknwn.h>'):
+ return ' 1'
return line
« no previous file with comments | « remoting/host/json_host_config_unittest.cc ('k') | ui/base/resource/data_pack_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698