| Index: chrome/browser/extensions/api/enterprise_platform_keys/token_method.cc
|
| diff --git a/chrome/browser/extensions/api/enterprise_platform_keys/token_method.cc b/chrome/browser/extensions/api/enterprise_platform_keys/token_method.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dd3804153cc6b20efbd69d586b270aa66548dffc
|
| --- /dev/null
|
| +++ b/chrome/browser/extensions/api/enterprise_platform_keys/token_method.cc
|
| @@ -0,0 +1,20 @@
|
| +// 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.
|
| +
|
| +#include "chrome/browser/extensions/api/enterprise_platform_keys/token_method.h"
|
| +
|
| +namespace extensions {
|
| +
|
| +namespace enterprise_platform_keys_details {
|
| +
|
| +TokenMethod::TokenMethod(const ErrorCallback& error_callback, Profile* profile)
|
| + : error_callback_(error_callback), profile_(profile) {
|
| +}
|
| +
|
| +TokenMethod::~TokenMethod() {
|
| +}
|
| +
|
| +} // namespace enterprise_platform_keys_details
|
| +
|
| +} // namespace extensions
|
|
|