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

Side by Side Diff: samples/swarm/DataSource.dart

Issue 10538105: Make isUtc a getter, change some method names in Date. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 6 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 | « samples/chat/dart_client/chat.dart ('k') | samples/third_party/dromaeo/common/BenchUtil.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** The top-level collection of all sections for a user. */ 5 /** The top-level collection of all sections for a user. */
6 // TODO(jimhug): This is known as UserData in the server model. 6 // TODO(jimhug): This is known as UserData in the server model.
7 class Sections implements Collection<Section> { 7 class Sections implements Collection<Section> {
8 final List<Section> _sections; 8 final List<Section> _sections;
9 9
10 Sections(this._sections); 10 Sections(this._sections);
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 } 233 }
234 234
235 static Article decodeHeader(Feed source, Decoder decoder) { 235 static Article decodeHeader(Feed source, Decoder decoder) {
236 final id = decoder.readString(); 236 final id = decoder.readString();
237 final title = decoder.readString(); 237 final title = decoder.readString();
238 final srcUrl = decoder.readString(); 238 final srcUrl = decoder.readString();
239 final hasThumbnail = decoder.readBool(); 239 final hasThumbnail = decoder.readBool();
240 final author = decoder.readString(); 240 final author = decoder.readString();
241 final dateInSeconds = decoder.readInt(); 241 final dateInSeconds = decoder.readInt();
242 final snippet = decoder.readString(); 242 final snippet = decoder.readString();
243 final date = new Date.fromEpoch(dateInSeconds*1000, isUtc: true); 243 final date =
244 new Date.fromMillisecondsSinceEpoch(dateInSeconds*1000, isUtc: true);
244 return new Article(source, id, date, title, author, srcUrl, hasThumbnail, 245 return new Article(source, id, date, title, author, srcUrl, hasThumbnail,
245 snippet); 246 snippet);
246 } 247 }
247 } 248 }
OLDNEW
« no previous file with comments | « samples/chat/dart_client/chat.dart ('k') | samples/third_party/dromaeo/common/BenchUtil.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698