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

Side by Side Diff: include/v8.h

Issue 739253006: Remove v8::StartupData::compressed_size. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | src/d8.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 /** \mainpage V8 API Reference Guide 5 /** \mainpage V8 API Reference Guide
6 * 6 *
7 * V8 is Google's open source JavaScript engine. 7 * V8 is Google's open source JavaScript engine.
8 * 8 *
9 * This set of documents provides reference material generated from the 9 * This set of documents provides reference material generated from the
10 * V8 header file, include/v8.h. 10 * V8 header file, include/v8.h.
(...skipping 5143 matching lines...) Expand 10 before | Expand all | Expand 10 after
5154 5154
5155 void SetObjectGroupId(internal::Object** object, UniqueId id); 5155 void SetObjectGroupId(internal::Object** object, UniqueId id);
5156 void SetReferenceFromGroup(UniqueId id, internal::Object** object); 5156 void SetReferenceFromGroup(UniqueId id, internal::Object** object);
5157 void SetReference(internal::Object** parent, internal::Object** child); 5157 void SetReference(internal::Object** parent, internal::Object** child);
5158 void CollectAllGarbage(const char* gc_reason); 5158 void CollectAllGarbage(const char* gc_reason);
5159 }; 5159 };
5160 5160
5161 class V8_EXPORT StartupData { 5161 class V8_EXPORT StartupData {
5162 public: 5162 public:
5163 const char* data; 5163 const char* data;
5164 int compressed_size; // TODO(yangguo): remove this.
5165 int raw_size; 5164 int raw_size;
5166 }; 5165 };
5167 5166
5168 5167
5169 /** 5168 /**
5170 * EntropySource is used as a callback function when v8 needs a source 5169 * EntropySource is used as a callback function when v8 needs a source
5171 * of entropy. 5170 * of entropy.
5172 */ 5171 */
5173 typedef bool (*EntropySource)(unsigned char* buffer, size_t length); 5172 typedef bool (*EntropySource)(unsigned char* buffer, size_t length);
5174 5173
(...skipping 2203 matching lines...) Expand 10 before | Expand all | Expand 10 after
7378 */ 7377 */
7379 7378
7380 7379
7381 } // namespace v8 7380 } // namespace v8
7382 7381
7383 7382
7384 #undef TYPE_CHECK 7383 #undef TYPE_CHECK
7385 7384
7386 7385
7387 #endif // V8_H_ 7386 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698