| OLD | NEW |
| 1 // Copyright 2013 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 // TODO(nona): Add more tests. | 4 // TODO(nona): Add more tests. |
| 5 | 5 |
| 6 #include "chromeos/ime/candidate_window.h" | 6 #include "chromeos/ime/candidate_window.h" |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 entry.description_title = kSampleString; | 131 entry.description_title = kSampleString; |
| 132 entry.description_body = kSampleString; | 132 entry.description_body = kSampleString; |
| 133 cw1.mutable_candidates()->push_back(entry); | 133 cw1.mutable_candidates()->push_back(entry); |
| 134 | 134 |
| 135 cw2.CopyFrom(cw1); | 135 cw2.CopyFrom(cw1); |
| 136 EXPECT_TRUE(cw1.IsEqual(cw2)); | 136 EXPECT_TRUE(cw1.IsEqual(cw2)); |
| 137 } | 137 } |
| 138 | 138 |
| 139 } // namespace input_method | 139 } // namespace input_method |
| 140 } // namespace chromeos | 140 } // namespace chromeos |
| OLD | NEW |