Update code documentation for enum in EWK headers
[platform/framework/web/chromium-efl.git] / chrome / renderer / net_benchmarking_extension.h
1 // Copyright 2013 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_NET_BENCHMARKING_EXTENSION_H_
6 #define CHROME_RENDERER_NET_BENCHMARKING_EXTENSION_H_
7
8 #include <memory>
9
10 namespace v8 {
11 class Extension;
12 }
13
14 namespace extensions_v8 {
15
16 class NetBenchmarkingExtension {
17  public:
18   static std::unique_ptr<v8::Extension> Get();
19 };
20
21 }  // namespace extensions_v8
22
23 #endif  // CHROME_RENDERER_NET_BENCHMARKING_EXTENSION_H_