Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/extension_function.h" | 9 #include "chrome/browser/extensions/extension_function.h" |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 26 // synthetic event distribution code to this Function. | 26 // synthetic event distribution code to this Function. |
| 27 class SendKeyboardEventInputFunction : public InputFunction { | 27 class SendKeyboardEventInputFunction : public InputFunction { |
| 28 public: | 28 public: |
| 29 virtual bool RunImpl(); | 29 virtual bool RunImpl(); |
| 30 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.sendKeyboardEvent"); | 30 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.sendKeyboardEvent"); |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 views::Widget* GetTopLevelWidget(); | 33 views::Widget* GetTopLevelWidget(); |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 #if defined(OS_CHROMEOS) && defined(TOUCH_UI) | |
|
Erik does not do reviews
2011/05/06 00:51:03
again, isn't TOUCH_UI enough?
Yusuke Sato
2011/05/16 15:47:38
ditto.
On 2011/05/06 00:51:03, Erik Kay wrote:
| |
| 37 // Note that this experimental APIs are currently only available for | |
| 38 // TOUCH_UI version of Chrome OS. Please also note that the version of Chrome | |
| 39 // OS is always built with TOOLKIT_VIEWS. | |
| 40 // | |
| 41 // We may eventually support other platforms, especially non TOUCH_UI version | |
| 42 // of Chrome OS. | |
| 43 class SendHandwritingStrokeFunction : public SyncExtensionFunction { | |
| 44 public: | |
| 45 virtual bool RunImpl(); | |
| 46 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.sendHandwritingStroke"); | |
| 47 }; | |
| 48 | |
| 49 class CancelHandwritingFunction : public SyncExtensionFunction { | |
| 50 public: | |
| 51 virtual bool RunImpl(); | |
| 52 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.cancelHandwriting"); | |
| 53 }; | |
| 54 #endif | |
| 55 | |
| 36 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_ | 56 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_ |
| OLD | NEW |