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

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

Issue 1282883003: Move service extension handler execution to a timer (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « runtime/vm/service.cc ('k') | sdk/lib/developer/extension.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) 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_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 V(position_registers, ":position_registers") \ 383 V(position_registers, ":position_registers") \
384 V(string_param, ":string_param") \ 384 V(string_param, ":string_param") \
385 V(start_index_param, ":start_index_param") \ 385 V(start_index_param, ":start_index_param") \
386 V(clear, "clear") \ 386 V(clear, "clear") \
387 V(_wordCharacterMap, "_wordCharacterMap") \ 387 V(_wordCharacterMap, "_wordCharacterMap") \
388 V(print, "print") \ 388 V(print, "print") \
389 V(last, "last") \ 389 V(last, "last") \
390 V(removeLast, "removeLast") \ 390 V(removeLast, "removeLast") \
391 V(add, "add") \ 391 V(add, "add") \
392 V(ConstructorClosurePrefix, "new#") \ 392 V(ConstructorClosurePrefix, "new#") \
393 V(_extensionExists, "_extensionExists") \ 393 V(_scheduleExtension, "_scheduleExtension") \
394 V(_invokeExtension, "_invokeExtension") \
395 394
396 395
397 // Contains a list of frequently used strings in a canonicalized form. This 396 // Contains a list of frequently used strings in a canonicalized form. This
398 // list is kept in the vm_isolate in order to share the copy across isolates 397 // list is kept in the vm_isolate in order to share the copy across isolates
399 // without having to maintain copies in each isolate. 398 // without having to maintain copies in each isolate.
400 class Symbols : public AllStatic { 399 class Symbols : public AllStatic {
401 public: 400 public:
402 enum { kMaxOneCharCodeSymbol = 0xFF }; 401 enum { kMaxOneCharCodeSymbol = 0xFF };
403 402
404 // List of strings that are pre created in the vm isolate. 403 // List of strings that are pre created in the vm isolate.
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 friend class SnapshotReader; 632 friend class SnapshotReader;
634 friend class SnapshotWriter; 633 friend class SnapshotWriter;
635 friend class ApiMessageReader; 634 friend class ApiMessageReader;
636 635
637 DISALLOW_COPY_AND_ASSIGN(Symbols); 636 DISALLOW_COPY_AND_ASSIGN(Symbols);
638 }; 637 };
639 638
640 } // namespace dart 639 } // namespace dart
641 640
642 #endif // VM_SYMBOLS_H_ 641 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/service.cc ('k') | sdk/lib/developer/extension.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698