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

Side by Side Diff: runtime/vm/snapshot.h

Issue 243973002: - Add a minimal implementation of Capability. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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 | « runtime/vm/service_test.cc ('k') | runtime/vm/snapshot.cc » ('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) 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 #ifndef VM_SNAPSHOT_H_ 5 #ifndef VM_SNAPSHOT_H_
6 #define VM_SNAPSHOT_H_ 6 #define VM_SNAPSHOT_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "vm/allocation.h" 9 #include "vm/allocation.h"
10 #include "vm/bitfield.h" 10 #include "vm/bitfield.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 class RawLibrary; 50 class RawLibrary;
51 class RawLibraryPrefix; 51 class RawLibraryPrefix;
52 class RawNamespace; 52 class RawNamespace;
53 class RawLiteralToken; 53 class RawLiteralToken;
54 class RawMint; 54 class RawMint;
55 class RawObject; 55 class RawObject;
56 class RawOneByteString; 56 class RawOneByteString;
57 class RawPatchClass; 57 class RawPatchClass;
58 class RawScript; 58 class RawScript;
59 class RawSmi; 59 class RawSmi;
60 class RawCapability;
61 class RawReceivePort;
62 class RawSendPort;
60 class RawStacktrace; 63 class RawStacktrace;
61 class RawTokenStream; 64 class RawTokenStream;
62 class RawType; 65 class RawType;
63 class RawTypeRef; 66 class RawTypeRef;
64 class RawTypeParameter; 67 class RawTypeParameter;
65 class RawTypeArguments; 68 class RawTypeArguments;
66 class RawTwoByteString; 69 class RawTwoByteString;
67 class RawUnresolvedClass; 70 class RawUnresolvedClass;
68 class String; 71 class String;
69 class TokenStream; 72 class TokenStream;
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 const char* exception_msg_; // Message associated with exception. 544 const char* exception_msg_; // Message associated with exception.
542 545
543 friend class RawArray; 546 friend class RawArray;
544 friend class RawClass; 547 friend class RawClass;
545 friend class RawClosureData; 548 friend class RawClosureData;
546 friend class RawGrowableObjectArray; 549 friend class RawGrowableObjectArray;
547 friend class RawImmutableArray; 550 friend class RawImmutableArray;
548 friend class RawJSRegExp; 551 friend class RawJSRegExp;
549 friend class RawLibrary; 552 friend class RawLibrary;
550 friend class RawLiteralToken; 553 friend class RawLiteralToken;
554 friend class RawReceivePort;
551 friend class RawScript; 555 friend class RawScript;
552 friend class RawStacktrace; 556 friend class RawStacktrace;
553 friend class RawTokenStream; 557 friend class RawTokenStream;
554 friend class RawTypeArguments; 558 friend class RawTypeArguments;
555 friend class RawMirrorReference; 559 friend class RawMirrorReference;
556 friend class SnapshotWriterVisitor; 560 friend class SnapshotWriterVisitor;
557 friend class RawUserTag; 561 friend class RawUserTag;
558 DISALLOW_COPY_AND_ASSIGN(SnapshotWriter); 562 DISALLOW_COPY_AND_ASSIGN(SnapshotWriter);
559 }; 563 };
560 564
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 private: 635 private:
632 SnapshotWriter* writer_; 636 SnapshotWriter* writer_;
633 bool as_references_; 637 bool as_references_;
634 638
635 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); 639 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor);
636 }; 640 };
637 641
638 } // namespace dart 642 } // namespace dart
639 643
640 #endif // VM_SNAPSHOT_H_ 644 #endif // VM_SNAPSHOT_H_
OLDNEW
« no previous file with comments | « runtime/vm/service_test.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698