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

Unified Diff: win8/metro_driver/ime/input_source.h

Issue 1815463002: Remove win8/metro_driver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « win8/metro_driver/ime/input_scope.cc ('k') | win8/metro_driver/ime/input_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/ime/input_source.h
diff --git a/win8/metro_driver/ime/input_source.h b/win8/metro_driver/ime/input_source.h
deleted file mode 100644
index 8b057b2e0833a7c47c5eae793a714e381be7e0f5..0000000000000000000000000000000000000000
--- a/win8/metro_driver/ime/input_source.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2013 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 WIN8_METRO_DRIVER_IME_INPUT_SOURCE_H_
-#define WIN8_METRO_DRIVER_IME_INPUT_SOURCE_H_
-
-#include <Windows.h>
-
-#include "base/memory/scoped_ptr.h"
-
-namespace metro_driver {
-
-class InputSourceObserver;
-
-// An interface through which information about the input source can be
-// retrieved, where an input source represents an IME or a keyboard layout.
-class InputSource {
- public:
- virtual ~InputSource() {}
- // Create an instance. Returns NULL if fails.
- static scoped_ptr<InputSource> Create();
-
- // Returns true if |langid| and |is_ime| are filled based on the current
- // active input source.
- virtual bool GetActiveSource(LANGID* langid, bool* is_ime) = 0;
-
- // Adds/Removes an observer to receive notifications when the active input
- // source is changed.
- virtual void AddObserver(InputSourceObserver* observer) = 0;
- virtual void RemoveObserver(InputSourceObserver* observer) = 0;
-};
-
-} // namespace metro_driver
-
-#endif // WIN8_METRO_DRIVER_IME_INPUT_SOURCE_H_
« no previous file with comments | « win8/metro_driver/ime/input_scope.cc ('k') | win8/metro_driver/ime/input_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698