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

Side by Side Diff: sky/engine/wtf/DateMath.h

Issue 736373003: Fix sky include guards to match Chromium style (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Reran script after fixing missing break Created 6 years 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 unified diff | Download patch
« no previous file with comments | « sky/engine/wtf/DataLog.h ('k') | sky/engine/wtf/DefaultAllocator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) 2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Google Inc. All rights reserved. 4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 * Copyright (C) 2010 Research In Motion Limited. All rights reserved. 5 * Copyright (C) 2010 Research In Motion Limited. All rights reserved.
6 * 6 *
7 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 7 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
8 * 8 *
9 * The contents of this file are subject to the Mozilla Public License Version 9 * The contents of this file are subject to the Mozilla Public License Version
10 * 1.1 (the "License"); you may not use this file except in compliance with 10 * 1.1 (the "License"); you may not use this file except in compliance with
(...skipping 22 matching lines...) Expand all
33 * of those above. If you wish to allow use of your version of this file only 33 * of those above. If you wish to allow use of your version of this file only
34 * under the terms of either the GPL or the LGPL, and not to allow others to 34 * under the terms of either the GPL or the LGPL, and not to allow others to
35 * use your version of this file under the terms of the MPL, indicate your 35 * use your version of this file under the terms of the MPL, indicate your
36 * decision by deleting the provisions above and replace them with the notice 36 * decision by deleting the provisions above and replace them with the notice
37 * and other provisions required by the GPL or the LGPL. If you do not delete 37 * and other provisions required by the GPL or the LGPL. If you do not delete
38 * the provisions above, a recipient may use your version of this file under 38 * the provisions above, a recipient may use your version of this file under
39 * the terms of any one of the MPL, the GPL or the LGPL. 39 * the terms of any one of the MPL, the GPL or the LGPL.
40 * 40 *
41 */ 41 */
42 42
43 #ifndef DateMath_h 43 #ifndef SKY_ENGINE_WTF_DATEMATH_H_
44 #define DateMath_h 44 #define SKY_ENGINE_WTF_DATEMATH_H_
45 45
46 #include <stdint.h> 46 #include <stdint.h>
47 #include <string.h> 47 #include <string.h>
48 #include "sky/engine/wtf/WTFExport.h" 48 #include "sky/engine/wtf/WTFExport.h"
49 #include "sky/engine/wtf/text/WTFString.h" 49 #include "sky/engine/wtf/text/WTFString.h"
50 50
51 namespace WTF { 51 namespace WTF {
52 52
53 WTF_EXPORT void initializeDates(); 53 WTF_EXPORT void initializeDates();
54 54
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 using WTF::msPerDay; 92 using WTF::msPerDay;
93 using WTF::msPerHour; 93 using WTF::msPerHour;
94 using WTF::msPerMinute; 94 using WTF::msPerMinute;
95 using WTF::msPerSecond; 95 using WTF::msPerSecond;
96 using WTF::msToYear; 96 using WTF::msToYear;
97 using WTF::secondsPerMinute; 97 using WTF::secondsPerMinute;
98 using WTF::parseDateFromNullTerminatedCharacters; 98 using WTF::parseDateFromNullTerminatedCharacters;
99 using WTF::makeRFC2822DateString; 99 using WTF::makeRFC2822DateString;
100 using WTF::convertToLocalTime; 100 using WTF::convertToLocalTime;
101 101
102 #endif // DateMath_h 102 #endif // SKY_ENGINE_WTF_DATEMATH_H_
OLDNEW
« no previous file with comments | « sky/engine/wtf/DataLog.h ('k') | sky/engine/wtf/DefaultAllocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698