[email protected] | c20210e6 | 2009-04-03 21:39:26 | [diff] [blame] | 1 | // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | // The LoadTimesExtension is a v8 extension to access the time it took | ||||
6 | // to load a page. | ||||
7 | |||||
[email protected] | 11f485728 | 2009-11-13 19:56:17 | [diff] [blame] | 8 | #ifndef CHROME_RENDERER_LOADTIMES_EXTENSION_BINDINGS_H_ |
9 | #define CHROME_RENDERER_LOADTIMES_EXTENSION_BINDINGS_H_ | ||||
[email protected] | 32b76ef | 2010-07-26 23:08:24 | [diff] [blame] | 10 | #pragma once |
[email protected] | c20210e6 | 2009-04-03 21:39:26 | [diff] [blame] | 11 | |
12 | namespace v8 { | ||||
13 | class Extension; | ||||
14 | } | ||||
15 | |||||
16 | namespace extensions_v8 { | ||||
17 | |||||
18 | class LoadTimesExtension { | ||||
19 | public: | ||||
20 | static v8::Extension* Get(); | ||||
21 | }; | ||||
22 | |||||
23 | } // namespace extensions_v8 | ||||
24 | |||||
[email protected] | 11f485728 | 2009-11-13 19:56:17 | [diff] [blame] | 25 | #endif // CHROME_RENDERER_LOADTIMES_EXTENSION_BINDINGS_H_ |