summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_input_method_api.h
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-27 22:24:10 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-27 22:24:10 +0000
commite14f34beb6e5981e091a778118cfa0d1da48a088 (patch)
tree6d940887f5d16d982895ea72b13b9d4475b529cb /chrome/browser/extensions/extension_input_method_api.h
parentb3c98de7f7e562dd1bcc60700d8be6e725cbb64b (diff)
downloadchromium_src-e14f34beb6e5981e091a778118cfa0d1da48a088.zip
chromium_src-e14f34beb6e5981e091a778118cfa0d1da48a088.tar.gz
chromium_src-e14f34beb6e5981e091a778118cfa0d1da48a088.tar.bz2
Reland "Move a bunch of ChromeOS APIs out of chrome/browser/extensions.""
Original CL: http://codereview.chromium.org/8609008 Review URL: http://codereview.chromium.org/8649007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111661 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_input_method_api.h')
-rw-r--r--chrome/browser/extensions/extension_input_method_api.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/chrome/browser/extensions/extension_input_method_api.h b/chrome/browser/extensions/extension_input_method_api.h
deleted file mode 100644
index c30510c..0000000
--- a/chrome/browser/extensions/extension_input_method_api.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_METHOD_API_H_
-#define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_METHOD_API_H_
-
-#include "base/compiler_specific.h"
-#include "chrome/browser/extensions/extension_function.h"
-
-// Implements the experimental.inputMethod.get method.
-class GetInputMethodFunction : public SyncExtensionFunction {
- public:
- GetInputMethodFunction();
-
- protected:
- virtual ~GetInputMethodFunction();
-
- virtual bool RunImpl() OVERRIDE;
-
- private:
- DECLARE_EXTENSION_FUNCTION_NAME("inputMethodPrivate.get");
-};
-
-#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_METHOD_API_H_