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

Side by Side Diff: include/v8.h

Issue 1371083003: [presubmit] Enable readability/namespace linter checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 2 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 | src/accessors.h » ('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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 class Arguments; 139 class Arguments;
140 class Heap; 140 class Heap;
141 class HeapObject; 141 class HeapObject;
142 class Isolate; 142 class Isolate;
143 class Object; 143 class Object;
144 struct StreamedSource; 144 struct StreamedSource;
145 template<typename T> class CustomArguments; 145 template<typename T> class CustomArguments;
146 class PropertyCallbackArguments; 146 class PropertyCallbackArguments;
147 class FunctionCallbackArguments; 147 class FunctionCallbackArguments;
148 class GlobalHandles; 148 class GlobalHandles;
149 } 149 } // namespace internal
150 150
151 151
152 /** 152 /**
153 * General purpose unique identifier. 153 * General purpose unique identifier.
154 */ 154 */
155 class UniqueId { 155 class UniqueId {
156 public: 156 public:
157 explicit UniqueId(intptr_t data) 157 explicit UniqueId(intptr_t data)
158 : data_(data) {} 158 : data_(data) {}
159 159
(...skipping 8194 matching lines...) Expand 10 before | Expand all | Expand 10 after
8354 */ 8354 */
8355 8355
8356 8356
8357 } // namespace v8 8357 } // namespace v8
8358 8358
8359 8359
8360 #undef TYPE_CHECK 8360 #undef TYPE_CHECK
8361 8361
8362 8362
8363 #endif // V8_H_ 8363 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698