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

Side by Side Diff: runtime/bin/dartutils.h

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. Created 8 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 | Annotate | Revision Log
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 BIN_DARTUTILS_H_ 5 #ifndef BIN_DARTUTILS_H_
6 #define BIN_DARTUTILS_H_ 6 #define BIN_DARTUTILS_H_
7 7
8 #include "bin/builtin.h" 8 #include "bin/builtin.h"
9 #include "bin/utils.h" 9 #include "bin/utils.h"
10 #include "include/dart_api.h" 10 #include "include/dart_api.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 119
120 static void SetOriginalWorkingDirectory(); 120 static void SetOriginalWorkingDirectory();
121 121
122 // Global state that stores the original working directory.. 122 // Global state that stores the original working directory..
123 static const char* original_working_directory; 123 static const char* original_working_directory;
124 124
125 static const char* kDartScheme; 125 static const char* kDartScheme;
126 static const char* kDartExtensionScheme; 126 static const char* kDartExtensionScheme;
127 static const char* kBuiltinLibURL; 127 static const char* kBuiltinLibURL;
128 static const char* kCoreLibURL; 128 static const char* kCoreLibURL;
129 static const char* kCoreImplLibURL;
130 static const char* kCryptoLibURL; 129 static const char* kCryptoLibURL;
131 static const char* kIOLibURL; 130 static const char* kIOLibURL;
132 static const char* kIOLibPatchURL; 131 static const char* kIOLibPatchURL;
133 static const char* kJsonLibURL; 132 static const char* kJsonLibURL;
134 static const char* kUriLibURL; 133 static const char* kUriLibURL;
135 static const char* kUtfLibURL; 134 static const char* kUtfLibURL;
136 static const char* kIsolateLibURL; 135 static const char* kIsolateLibURL;
137 static const char* kScalarlistLibURL; 136 static const char* kScalarlistLibURL;
138 static const char* kWebLibURL; 137 static const char* kWebLibURL;
139 138
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 void* Peer() const { return cobject_->value.as_external_byte_array.peer; } 369 void* Peer() const { return cobject_->value.as_external_byte_array.peer; }
371 Dart_PeerFinalizer Callback() const { 370 Dart_PeerFinalizer Callback() const {
372 return cobject_->value.as_external_byte_array.callback; 371 return cobject_->value.as_external_byte_array.callback;
373 } 372 }
374 373
375 private: 374 private:
376 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array); 375 DISALLOW_COPY_AND_ASSIGN(CObjectExternalUint8Array);
377 }; 376 };
378 377
379 #endif // BIN_DARTUTILS_H_ 378 #endif // BIN_DARTUTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698