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

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

Issue 2087723002: Fix canonicalization of relative paths, Dart_DefaultCanonicalizeUrl expects the base)url to end wit… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | runtime/bin/dartutils.cc » ('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 BIN_DARTUTILS_H_ 5 #ifndef BIN_DARTUTILS_H_
6 #define BIN_DARTUTILS_H_ 6 #define BIN_DARTUTILS_H_
7 7
8 #include "bin/isolate_data.h" 8 #include "bin/isolate_data.h"
9 #include "include/dart_api.h" 9 #include "include/dart_api.h"
10 #include "include/dart_native_api.h" 10 #include "include/dart_native_api.h"
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 static Dart_Handle NewError(const char* format, ...); 186 static Dart_Handle NewError(const char* format, ...);
187 static Dart_Handle NewInternalError(const char* message); 187 static Dart_Handle NewInternalError(const char* message);
188 188
189 static Dart_Handle BuiltinLib() { 189 static Dart_Handle BuiltinLib() {
190 IsolateData* isolate_data = 190 IsolateData* isolate_data =
191 reinterpret_cast<IsolateData*>(Dart_CurrentIsolateData()); 191 reinterpret_cast<IsolateData*>(Dart_CurrentIsolateData());
192 return isolate_data->builtin_lib(); 192 return isolate_data->builtin_lib();
193 } 193 }
194 194
195 static bool SetOriginalWorkingDirectory(); 195 static bool SetOriginalWorkingDirectory();
196 static Dart_Handle GetCanonicalizableWorkingDirectory();
196 197
197 static const char* MapLibraryUrl(const char* url_string); 198 static const char* MapLibraryUrl(const char* url_string);
198 199
199 static Dart_Handle ResolveScript(Dart_Handle url); 200 static Dart_Handle ResolveScript(Dart_Handle url);
200 201
201 // Sniffs the specified text_buffer to see if it contains the magic number 202 // Sniffs the specified text_buffer to see if it contains the magic number
202 // representing a script snapshot. If the text_buffer is a script snapshot 203 // representing a script snapshot. If the text_buffer is a script snapshot
203 // the return value is an updated pointer to the text_buffer pointing past 204 // the return value is an updated pointer to the text_buffer pointing past
204 // the magic number value. The 'buffer_len' parameter is also appropriately 205 // the magic number value. The 'buffer_len' parameter is also appropriately
205 // adjusted. 206 // adjusted.
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 bool is_typed_data_; 665 bool is_typed_data_;
665 666
666 DISALLOW_ALLOCATION(); 667 DISALLOW_ALLOCATION();
667 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer); 668 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer);
668 }; 669 };
669 670
670 } // namespace bin 671 } // namespace bin
671 } // namespace dart 672 } // namespace dart
672 673
673 #endif // BIN_DARTUTILS_H_ 674 #endif // BIN_DARTUTILS_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/dartutils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698