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

Side by Side Diff: sdk/lib/html/src/Serialization.dart

Issue 11407002: Adding 'part of html' to all files which are used by dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Patch file for the dart:isolate library. 5 // Patch file for the dart:isolate library.
6 6
7 part of html;
8
7 /******************************************************** 9 /********************************************************
8 Inserted from lib/isolate/serialization.dart 10 Inserted from lib/isolate/serialization.dart
9 ********************************************************/ 11 ********************************************************/
10 12
11 class _MessageTraverserVisitedMap { 13 class _MessageTraverserVisitedMap {
12 14
13 operator[](var object) => null; 15 operator[](var object) => null;
14 void operator[]=(var object, var info) { } 16 void operator[]=(var object, var info) { }
15 17
16 void reset() { } 18 void reset() { }
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 } 206 }
205 207
206 abstract deserializeSendPort(List x); 208 abstract deserializeSendPort(List x);
207 209
208 deserializeObject(List x) { 210 deserializeObject(List x) {
209 // TODO(floitsch): Use real exception (which one?). 211 // TODO(floitsch): Use real exception (which one?).
210 throw "Unexpected serialized object"; 212 throw "Unexpected serialized object";
211 } 213 }
212 } 214 }
213 215
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698