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

Unified Diff: ui/views/ime/text_input_type_tracker.cc

Issue 10416027: Remove virtual keyboard support from ui/views/ime/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « ui/views/ime/text_input_type_tracker.h ('k') | ui/views/views.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/ime/text_input_type_tracker.cc
diff --git a/ui/views/ime/text_input_type_tracker.cc b/ui/views/ime/text_input_type_tracker.cc
deleted file mode 100644
index 1e54909dc7438e4c62e397ab4ec7e809fc952350..0000000000000000000000000000000000000000
--- a/ui/views/ime/text_input_type_tracker.cc
+++ /dev/null
@@ -1,37 +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.
-
-#include "ui/views/ime/text_input_type_tracker.h"
-
-namespace views {
-
-void TextInputTypeTracker::AddTextInputTypeObserver(
- TextInputTypeObserver* observer) {
- text_input_type_observers_.AddObserver(observer);
-}
-
-void TextInputTypeTracker::RemoveTextInputTypeObserver(
- TextInputTypeObserver* observer) {
- text_input_type_observers_.RemoveObserver(observer);
-}
-
-void TextInputTypeTracker::OnTextInputTypeChanged(
- ui::TextInputType type, Widget* widget) {
- FOR_EACH_OBSERVER(TextInputTypeObserver,
- text_input_type_observers_,
- TextInputTypeChanged(type, widget));
-}
-
-TextInputTypeTracker::TextInputTypeTracker() {
-}
-
-TextInputTypeTracker::~TextInputTypeTracker() {
-}
-
-// static
-TextInputTypeTracker* TextInputTypeTracker::GetInstance() {
- return Singleton<TextInputTypeTracker>::get();
-}
-
-} // namespace views
« no previous file with comments | « ui/views/ime/text_input_type_tracker.h ('k') | ui/views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698