Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // 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.
| |
| 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_BROWSER_EXTENSIONS_EXTENSION_INTERNAL_AUTH_API_H_ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INTERNAL_AUTH_API_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "chrome/browser/extensions/extension_function.h" | |
| 10 | |
| 11 class InternalAuthGetTokenFunction : public SyncExtensionFunction { | |
| 12 private: | |
| 13 // ExtensionFunction implementation. | |
| 14 virtual ~InternalAuthGetTokenFunction() {} | |
| 15 virtual bool RunImpl(); | |
| 16 | |
| 17 DECLARE_EXTENSION_FUNCTION_NAME("internalAuth.getToken") | |
| 18 }; | |
| 19 | |
| 20 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INTERNAL_AUTH_API_H_ | |
| OLD | NEW |