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

Unified Diff: tonic/dart_state.h

Issue 1244983003: Make mojo dart controller depend on tonic and get building without wtf (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tonic/dart_library_loader.cc ('k') | tonic/dart_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tonic/dart_state.h
diff --git a/tonic/dart_state.h b/tonic/dart_state.h
index 5eafb550aa246eb4ecdf27d213d834f88a617f40..e56d38a2d421ee9851201c1651ebb4d7e2a2f266 100644
--- a/tonic/dart_state.h
+++ b/tonic/dart_state.h
@@ -17,7 +17,6 @@ namespace blink {
class DartClassLibrary;
class DartExceptionFactory;
class DartLibraryLoader;
-class DartStringCache;
class DartTimerHeap;
// DartState represents the state associated with a given Dart isolate. The
@@ -51,7 +50,6 @@ class DartState : public base::SupportsUserData {
DartClassLibrary& class_library() { return *class_library_; }
DartExceptionFactory& exception_factory() { return *exception_factory_; }
DartLibraryLoader& library_loader() { return *library_loader_; }
- DartStringCache& string_cache() { return *string_cache_; }
DartTimerHeap& timer_heap() { return *timer_heap_; }
Dart_Handle index_handle() { return index_handle_.value(); }
@@ -63,7 +61,6 @@ class DartState : public base::SupportsUserData {
std::unique_ptr<DartClassLibrary> class_library_;
std::unique_ptr<DartExceptionFactory> exception_factory_;
std::unique_ptr<DartLibraryLoader> library_loader_;
- std::unique_ptr<DartStringCache> string_cache_;
std::unique_ptr<DartTimerHeap> timer_heap_;
DartPersistentValue index_handle_;
« no previous file with comments | « tonic/dart_library_loader.cc ('k') | tonic/dart_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698