| Index: chrome/renderer/extensions/enterprise_certificates_natives.h
|
| diff --git a/chrome/renderer/extensions/enterprise_certificates_natives.h b/chrome/renderer/extensions/enterprise_certificates_natives.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3330dd62322d4dd816b4b6eb50661c4d0edc5456
|
| --- /dev/null
|
| +++ b/chrome/renderer/extensions/enterprise_certificates_natives.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_RENDERER_EXTENSIONS_ENTERPRISE_CERTIFICATES_NATIVES_H_
|
| +#define CHROME_RENDERER_EXTENSIONS_ENTERPRISE_CERTIFICATES_NATIVES_H_
|
| +
|
| +#include "base/compiler_specific.h"
|
| +#include "chrome/renderer/extensions/object_backed_native_handler.h"
|
| +
|
| +namespace extensions {
|
| +
|
| +class ChromeV8Context;
|
| +
|
| +// Custom bindings for the enterprise.certificates API.
|
| +class EnterpriseCertificatesNatives : public ObjectBackedNativeHandler {
|
| + public:
|
| + explicit EnterpriseCertificatesNatives(ChromeV8Context* context);
|
| +
|
| + private:
|
| + void GetPrivateKey(const v8::FunctionCallbackInfo<v8::Value>& call_info);
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(EnterpriseCertificatesNatives);
|
| +};
|
| +
|
| +} // namespace extensions
|
| +
|
| +#endif // CHROME_RENDERER_EXTENSIONS_ENTERPRISE_CERTIFICATES_NATIVES_H_
|
|
|