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

Side by Side Diff: runtime/vm/object.cc

Issue 1415843008: Revert "Remove deprecated dart:profiler library" (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_store.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 // 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 #include "vm/object.h" 5 #include "vm/object.h"
6 6
7 #include "include/dart_api.h" 7 #include "include/dart_api.h"
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 #include "vm/cpu.h" 10 #include "vm/cpu.h"
(...skipping 10448 matching lines...) Expand 10 before | Expand all | Expand 10 after
10459 RawLibrary* Library::MirrorsLibrary() { 10459 RawLibrary* Library::MirrorsLibrary() {
10460 return Isolate::Current()->object_store()->mirrors_library(); 10460 return Isolate::Current()->object_store()->mirrors_library();
10461 } 10461 }
10462 10462
10463 10463
10464 RawLibrary* Library::NativeWrappersLibrary() { 10464 RawLibrary* Library::NativeWrappersLibrary() {
10465 return Isolate::Current()->object_store()->native_wrappers_library(); 10465 return Isolate::Current()->object_store()->native_wrappers_library();
10466 } 10466 }
10467 10467
10468 10468
10469 RawLibrary* Library::ProfilerLibrary() {
10470 return Isolate::Current()->object_store()->profiler_library();
10471 }
10472
10473
10469 RawLibrary* Library::TypedDataLibrary() { 10474 RawLibrary* Library::TypedDataLibrary() {
10470 return Isolate::Current()->object_store()->typed_data_library(); 10475 return Isolate::Current()->object_store()->typed_data_library();
10471 } 10476 }
10472 10477
10473 10478
10474 RawLibrary* Library::VMServiceLibrary() { 10479 RawLibrary* Library::VMServiceLibrary() {
10475 return Isolate::Current()->object_store()->vmservice_library(); 10480 return Isolate::Current()->object_store()->vmservice_library();
10476 } 10481 }
10477 10482
10478 10483
(...skipping 11462 matching lines...) Expand 10 before | Expand all | Expand 10 after
21941 return tag_label.ToCString(); 21946 return tag_label.ToCString();
21942 } 21947 }
21943 21948
21944 21949
21945 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { 21950 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const {
21946 Instance::PrintJSONImpl(stream, ref); 21951 Instance::PrintJSONImpl(stream, ref);
21947 } 21952 }
21948 21953
21949 21954
21950 } // namespace dart 21955 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698