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

Side by Side Diff: base/third_party/nspr/prtime.h

Issue 6903022: Removed wchar_t from Time::FromString (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed unnecessary blankline. Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/pr_time_unittest.cc ('k') | base/time.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 /* Portions are Copyright (C) 2011 Google Inc */ 1 /* Portions are Copyright (C) 2011 Google Inc */
2 /* ***** BEGIN LICENSE BLOCK ***** 2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 * 4 *
5 * The contents of this file are subject to the Mozilla Public License Version 5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with 6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at 7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/ 8 * http://www.mozilla.org/MPL/
9 * 9 *
10 * Software distributed under the License is distributed on an "AS IS" basis, 10 * Software distributed under the License is distributed on an "AS IS" basis,
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 * be interpreted relative to the local time zone (PR_FALSE) or GMT (PR_TRUE). 223 * be interpreted relative to the local time zone (PR_FALSE) or GMT (PR_TRUE).
224 * The correct value for this argument depends on what standard specified 224 * The correct value for this argument depends on what standard specified
225 * the time string which you are parsing. 225 * the time string which you are parsing.
226 */ 226 */
227 227
228 /* 228 /*
229 * This is the only funtion that should be called from outside base, and only 229 * This is the only funtion that should be called from outside base, and only
230 * from the unit test. 230 * from the unit test.
231 */ 231 */
232 232
233 BASE_API PRStatus PR_ParseTimeString ( 233 NSPR_API(PRStatus) PR_ParseTimeString (
234 const char *string, 234 const char *string,
235 PRBool default_to_gmt, 235 PRBool default_to_gmt,
236 PRTime *result); 236 PRTime *result);
237 237
238 #endif // BASE_PRTIME_H__ 238 #endif // BASE_PRTIME_H__
OLDNEW
« no previous file with comments | « base/pr_time_unittest.cc ('k') | base/time.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698