Chromium Code Reviews| Index: chrome/browser/extensions/extension_internal_auth_api.h |
| diff --git a/chrome/browser/extensions/extension_internal_auth_api.h b/chrome/browser/extensions/extension_internal_auth_api.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..764f1a365f9ae18b5f15710116e89239baf242e2 |
| --- /dev/null |
| +++ b/chrome/browser/extensions/extension_internal_auth_api.h |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
|
Aaron Boodman
2011/03/29 18:38:34
Doesn't there need to be a change to extensions_ap
Denis Lagno
2011/04/04 18:18:02
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INTERNAL_AUTH_API_H_ |
| +#define CHROME_BROWSER_EXTENSIONS_EXTENSION_INTERNAL_AUTH_API_H_ |
| +#pragma once |
| + |
| +#include "chrome/browser/extensions/extension_function.h" |
| + |
| +class InternalAuthGetTokenFunction : public SyncExtensionFunction { |
| + private: |
| + // ExtensionFunction implementation. |
| + virtual ~InternalAuthGetTokenFunction() {} |
| + virtual bool RunImpl(); |
| + |
| + DECLARE_EXTENSION_FUNCTION_NAME("internalAuth.getToken") |
| +}; |
| + |
| +#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INTERNAL_AUTH_API_H_ |