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

Side by Side Diff: src/wasm/wasm-result.h

Issue 2175233003: Replace SmartPointer<T> with unique_ptr<T> (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@smart-array
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_WASM_RESULT_H_ 5 #ifndef V8_WASM_RESULT_H_
6 #define V8_WASM_RESULT_H_ 6 #define V8_WASM_RESULT_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
11 #include "src/base/smart-pointers.h"
12 11
13 #include "src/handles.h" 12 #include "src/handles.h"
14 #include "src/globals.h" 13 #include "src/globals.h"
15 14
16 namespace v8 { 15 namespace v8 {
17 namespace internal { 16 namespace internal {
18 17
19 class Isolate; 18 class Isolate;
20 19
21 namespace wasm { 20 namespace wasm {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 private: 128 private:
130 Isolate* isolate_; 129 Isolate* isolate_;
131 const char* context_; 130 const char* context_;
132 i::Handle<i::String> message_; 131 i::Handle<i::String> message_;
133 }; 132 };
134 } // namespace wasm 133 } // namespace wasm
135 } // namespace internal 134 } // namespace internal
136 } // namespace v8 135 } // namespace v8
137 136
138 #endif 137 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698