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

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

Issue 1398433002: Remove deprecated dart:profiler library (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/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 10246 matching lines...) Expand 10 before | Expand all | Expand 10 after
10257 RawLibrary* Library::MirrorsLibrary() { 10257 RawLibrary* Library::MirrorsLibrary() {
10258 return Isolate::Current()->object_store()->mirrors_library(); 10258 return Isolate::Current()->object_store()->mirrors_library();
10259 } 10259 }
10260 10260
10261 10261
10262 RawLibrary* Library::NativeWrappersLibrary() { 10262 RawLibrary* Library::NativeWrappersLibrary() {
10263 return Isolate::Current()->object_store()->native_wrappers_library(); 10263 return Isolate::Current()->object_store()->native_wrappers_library();
10264 } 10264 }
10265 10265
10266 10266
10267 RawLibrary* Library::ProfilerLibrary() {
10268 return Isolate::Current()->object_store()->profiler_library();
10269 }
10270
10271
10272 RawLibrary* Library::TypedDataLibrary() { 10267 RawLibrary* Library::TypedDataLibrary() {
10273 return Isolate::Current()->object_store()->typed_data_library(); 10268 return Isolate::Current()->object_store()->typed_data_library();
10274 } 10269 }
10275 10270
10276 10271
10277 RawLibrary* Library::VMServiceLibrary() { 10272 RawLibrary* Library::VMServiceLibrary() {
10278 return Isolate::Current()->object_store()->vmservice_library(); 10273 return Isolate::Current()->object_store()->vmservice_library();
10279 } 10274 }
10280 10275
10281 10276
(...skipping 11257 matching lines...) Expand 10 before | Expand all | Expand 10 after
21539 return tag_label.ToCString(); 21534 return tag_label.ToCString();
21540 } 21535 }
21541 21536
21542 21537
21543 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const { 21538 void UserTag::PrintJSONImpl(JSONStream* stream, bool ref) const {
21544 Instance::PrintJSONImpl(stream, ref); 21539 Instance::PrintJSONImpl(stream, ref);
21545 } 21540 }
21546 21541
21547 21542
21548 } // namespace dart 21543 } // 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