OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium 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 CHROME_RENDERER_EXTENSIONS_JS_ONLY_V8_EXTENSIONS_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_JS_ONLY_V8_EXTENSIONS_H_ |
6 #define CHROME_RENDERER_EXTENSIONS_JS_ONLY_V8_EXTENSIONS_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_JS_ONLY_V8_EXTENSIONS_H_ |
7 | 7 |
8 #include "v8/include/v8.h" | 8 #include "v8/include/v8.h" |
9 | 9 |
10 // This file contains various V8 Extensions that are JavaScript only, and | 10 // This file contains various V8 Extensions that are JavaScript only, and |
(...skipping 10 matching lines...) Expand all Loading... |
21 static const char* kName; | 21 static const char* kName; |
22 static v8::Extension* Get(); | 22 static v8::Extension* Get(); |
23 }; | 23 }; |
24 | 24 |
25 class ExtensionApiTestV8Extension { | 25 class ExtensionApiTestV8Extension { |
26 public: | 26 public: |
27 static const char* kName; | 27 static const char* kName; |
28 static v8::Extension* Get(); | 28 static v8::Extension* Get(); |
29 }; | 29 }; |
30 | 30 |
31 #endif // CHROME_RENDERER_JS_ONLY_V8_EXTENSIONS_H_ | 31 #endif // CHROME_RENDERER_EXTENSIONS_JS_ONLY_V8_EXTENSIONS_H_ |
OLD | NEW |