OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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 "ui/base/ime/input_method.h" | |
6 | |
7 namespace ui { | |
8 | |
9 InputMethod::~InputMethod() { | |
sky
2011/12/05 15:15:29
you could inline this if you want.
Yusuke Sato
2011/12/05 22:55:14
Done.
| |
10 } | |
11 | |
12 } // namespace ui | |
OLD | NEW |