| Index: chrome/browser/extensions/api/input/input.h
|
| diff --git a/chrome/browser/extensions/api/input/input.h b/chrome/browser/extensions/api/input/input.h
|
| index 4cdf3fa1da6bb7c55a63b1014a0a1b42bc9dc6f4..929e66059b89d82e95fa8456d3c2adbc5b2d0b08 100644
|
| --- a/chrome/browser/extensions/api/input/input.h
|
| +++ b/chrome/browser/extensions/api/input/input.h
|
| @@ -26,6 +26,19 @@ class InsertTextInputFunction : public SyncExtensionFunction {
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| +class HideKeyboardFunction : public SyncExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION(
|
| + "experimental.input.virtualKeyboard.hideKeyboard",
|
| + EXPERIMENTAL_INPUT_VIRTUALKEYBOARD_HIDEKEYBOARD);
|
| +
|
| + protected:
|
| + virtual ~HideKeyboardFunction() {}
|
| +
|
| + // ExtensionFunction:
|
| + virtual bool RunImpl() OVERRIDE;
|
| +};
|
| +
|
| class InputAPI : public ProfileKeyedAPI {
|
| public:
|
| explicit InputAPI(Profile* profile);
|
|
|