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

Side by Side Diff: ui/chromeos/ime/candidate_window_view.cc

Issue 727143002: Moves code from chromeos/ime to ui/base/ime/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed solution: move chromeos/ime to ui/base/ime/chromeos. Created 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "ui/chromeos/ime/candidate_window_view.h" 5 #include "ui/chromeos/ime//candidate_window_view.h"
Jun Mukai 2014/11/20 08:25:07 and this
Shu Chen 2014/11/20 08:34:39 Done.
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "ui/chromeos/ime/candidate_view.h" 10 #include "ui/chromeos/ime/candidate_view.h"
11 #include "ui/chromeos/ime/candidate_window_constants.h" 11 #include "ui/chromeos/ime/candidate_window_constants.h"
12 #include "ui/gfx/color_utils.h" 12 #include "ui/gfx/color_utils.h"
13 #include "ui/gfx/screen.h" 13 #include "ui/gfx/screen.h"
14 #include "ui/native_theme/native_theme.h" 14 #include "ui/native_theme/native_theme.h"
15 #include "ui/views/background.h" 15 #include "ui/views/background.h"
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 for (size_t i = 0; i < candidate_views_.size(); ++i) { 397 for (size_t i = 0; i < candidate_views_.size(); ++i) {
398 if (sender == candidate_views_[i]) { 398 if (sender == candidate_views_[i]) {
399 FOR_EACH_OBSERVER(Observer, observers_, OnCandidateCommitted(i)); 399 FOR_EACH_OBSERVER(Observer, observers_, OnCandidateCommitted(i));
400 return; 400 return;
401 } 401 }
402 } 402 }
403 } 403 }
404 404
405 } // namespace ime 405 } // namespace ime
406 } // namespace ui 406 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698