Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 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 #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") | |
|
zel
2011/03/29 05:31:34
the is 'private' API and we should pick a better n
Denis Lagno
2011/04/04 18:18:02
Done.
| |
| 18 }; | |
| 19 | |
| 20 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INTERNAL_AUTH_API_H_ | |
| OLD | NEW |