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

Side by Side Diff: include/v8.h

Issue 1302413007: [presubmit] Fix runtime/indentation_namespace linter violations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_fix-presubmit-rules
Patch Set: Created 5 years, 3 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/globals.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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 class SymbolObject; 105 class SymbolObject;
106 class Uint32; 106 class Uint32;
107 class Utils; 107 class Utils;
108 class Value; 108 class Value;
109 template <class T> class Local; 109 template <class T> class Local;
110 template <class T> 110 template <class T>
111 class MaybeLocal; 111 class MaybeLocal;
112 template <class T> class Eternal; 112 template <class T> class Eternal;
113 template<class T> class NonCopyablePersistentTraits; 113 template<class T> class NonCopyablePersistentTraits;
114 template<class T> class PersistentBase; 114 template<class T> class PersistentBase;
115 template<class T, 115 template <class T, class M = NonCopyablePersistentTraits<T> >
116 class M = NonCopyablePersistentTraits<T> > class Persistent; 116 class Persistent;
117 template <class T> 117 template <class T>
118 class Global; 118 class Global;
119 template<class K, class V, class T> class PersistentValueMap; 119 template<class K, class V, class T> class PersistentValueMap;
120 template <class K, class V, class T> 120 template <class K, class V, class T>
121 class PersistentValueMapBase; 121 class PersistentValueMapBase;
122 template <class K, class V, class T> 122 template <class K, class V, class T>
123 class GlobalValueMap; 123 class GlobalValueMap;
124 template<class V, class T> class PersistentValueVector; 124 template<class V, class T> class PersistentValueVector;
125 template<class T, class P> class WeakCallbackObject; 125 template<class T, class P> class WeakCallbackObject;
126 class FunctionTemplate; 126 class FunctionTemplate;
(...skipping 8220 matching lines...) Expand 10 before | Expand all | Expand 10 after
8347 */ 8347 */
8348 8348
8349 8349
8350 } // namespace v8 8350 } // namespace v8
8351 8351
8352 8352
8353 #undef TYPE_CHECK 8353 #undef TYPE_CHECK
8354 8354
8355 8355
8356 #endif // V8_H_ 8356 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698