~ubuntu-branches/ubuntu/oneiric/mozc/oneiric

« back to all changes in this revision

Viewing changes to session/ime_switch_util.h

  • Committer: Bazaar Package Importer
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2010-07-14 03:26:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100714032647-13qjisj6m8cm8jdx
Tags: 0.12.410.102-1
* New upstream release (Closes: #588971).
  - Add mozc-server, mozc-utils-gui and scim-mozc packages.
* Update debian/rules.
  Add --gypdir option to build_mozc.py.
* Update debian/control.
  - Bumped standards-version to 3.9.0.
  - Update description.
* Add mozc icon (Closes: #588972).
* Add patch which revises issue 18.
  ibus_mozc_issue18.patch
* kFreeBSD build support.
  support_kfreebsd.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
28
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
29
 
30
 
#ifndef MOZC_BASE_IME_SWITCH_UTIL_H_
31
 
#define MOZC_BASE_IME_SWITCH_UTIL_H_
 
30
#ifndef MOZC_SESSION_IME_SWITCH_UTIL_H_
 
31
#define MOZC_SESSION_IME_SWITCH_UTIL_H_
32
32
 
33
33
#include <vector>
34
34
 
49
49
  // Returns the copy of key event list.
50
50
  // They are needed for Windows.
51
51
  // On Windows, we should register these hotkeys on IME activation.
52
 
  // You cannot assume the returned vector is immutable. An explicit
53
 
  // or an implicit call of ImeSwitchUtil::Reload may update the content
54
 
  // of the returned vector.
55
52
  static void GetTurnOnInDirectModeKeyEventList(
56
53
      vector<commands::KeyEvent> *key_events);
57
54
 
64
61
}  // namespace config
65
62
}  // namespace mozc
66
63
 
67
 
#endif  // MOZC_BASE_IME_SWITCH_UTIL_H_
 
64
#endif  // MOZC_SESSION_IME_SWITCH_UTIL_H_