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

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

Issue 61003004: Delete ibus_object and move ibus_text to chromeos/ime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modified based on the review. Created 7 years, 1 month 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
« no previous file with comments | « chromeos/ime/ibus_text.h ('k') | chromeos/ime/ibus_text_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
(Empty)
1 // Copyright (c) 2012 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 #include "chromeos/ime/ibus_text.h"
6
7 namespace chromeos {
8
9 IBusText::IBusText() {}
10
11 IBusText::~IBusText() {}
12
13 void IBusText::CopyFrom(const IBusText& obj) {
14 text_ = obj.text();
15 annotation_ = obj.annotation();
16 description_title_ = obj.description_title();
17 description_body_ = obj.description_body();
18 underline_attributes_ = obj.underline_attributes();
19 selection_attributes_ = obj.selection_attributes();
20 }
21
22 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/ime/ibus_text.h ('k') | chromeos/ime/ibus_text_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698