OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 #include "chrome/browser/extensions/api/enterprise_platform_keys/token_method.h" |
| 6 |
| 7 namespace extensions { |
| 8 |
| 9 namespace enterprise_platform_keys_details { |
| 10 |
| 11 TokenMethod::TokenMethod(const ErrorCallback& error_callback, Profile* profile) |
| 12 : error_callback_(error_callback), profile_(profile) { |
| 13 } |
| 14 |
| 15 TokenMethod::~TokenMethod() { |
| 16 } |
| 17 |
| 18 } // namespace enterprise_platform_keys_details |
| 19 |
| 20 } // namespace extensions |
OLD | NEW |