Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: chrome/browser/extensions/extension_input_api.h

Issue 3130029: Lands http://codereview.chromium.org/3153008 for bryeung: (Closed)
Patch Set: YAM Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 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_INPUT_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_
7 #pragma once
8
9 #include "chrome/browser/extensions/extension_function.h"
10
11 namespace views {
12 class RootView;
13 } // namespace views
14
15 // Base class for input APIs.
16 class InputFunction : public AsyncExtensionFunction {
17 public:
18 virtual void Run();
19 virtual bool RunImpl() = 0;
20 };
21
22 // Note that this experimental API is currently only available for
23 // TOOLKIT_VIEWS (see chrome/chrome_browser.gypi).
24 //
25 // We may eventually support other platforms by adding the necessary
26 // synthetic event distribution code to this Function.
27 class SendKeyboardEventInputFunction : public InputFunction {
28 public:
29 virtual bool RunImpl();
30 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.sendKeyboardEvent");
31
32 private:
33 views::RootView* GetRootView();
34 };
35
36 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_API_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_function_dispatcher.cc ('k') | chrome/browser/extensions/extension_input_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698