blob: bb026fdb37dcd029c22f950df6717ffdbd1b9c16 [file] [log] [blame]
[email protected]c20210e62009-04-03 21:39:261// 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]11f4857282009-11-13 19:56:178#ifndef CHROME_RENDERER_LOADTIMES_EXTENSION_BINDINGS_H_
9#define CHROME_RENDERER_LOADTIMES_EXTENSION_BINDINGS_H_
[email protected]32b76ef2010-07-26 23:08:2410#pragma once
[email protected]c20210e62009-04-03 21:39:2611
12namespace v8 {
13class Extension;
14}
15
16namespace extensions_v8 {
17
18class LoadTimesExtension {
19 public:
20 static v8::Extension* Get();
21};
22
23} // namespace extensions_v8
24
[email protected]11f4857282009-11-13 19:56:1725#endif // CHROME_RENDERER_LOADTIMES_EXTENSION_BINDINGS_H_