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

Side by Side Diff: chromeos/ime/input_method_property.cc

Issue 12438013: Move InputMethod misc class from c/b/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chromeos/ime/input_method_property.h ('k') | chromeos/ime/input_method_property_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "chrome/browser/chromeos/input_method/input_method_property.h" 5 #include "chromeos/ime/input_method_property.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
11 namespace chromeos { 11 namespace chromeos {
12 namespace input_method { 12 namespace input_method {
13 13
14 InputMethodProperty::InputMethodProperty(const std::string& in_key, 14 InputMethodProperty::InputMethodProperty(const std::string& in_key,
15 const std::string& in_label, 15 const std::string& in_label,
(...skipping 29 matching lines...) Expand all
45 std::stringstream stream; 45 std::stringstream stream;
46 stream << "key=" << key 46 stream << "key=" << key
47 << ", label=" << label 47 << ", label=" << label
48 << ", is_selection_item=" << is_selection_item 48 << ", is_selection_item=" << is_selection_item
49 << ", is_selection_item_checked=" << is_selection_item_checked; 49 << ", is_selection_item_checked=" << is_selection_item_checked;
50 return stream.str(); 50 return stream.str();
51 } 51 }
52 52
53 } // namespace input_method 53 } // namespace input_method
54 } // namespace chromeos 54 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/ime/input_method_property.h ('k') | chromeos/ime/input_method_property_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698