| Index: chromeos/ime/extension_ime_util.cc
 | 
| diff --git a/chromeos/ime/extension_ime_util.cc b/chromeos/ime/extension_ime_util.cc
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..7e6d3ac267276eae811ff8575fdfb99ed12789a4
 | 
| --- /dev/null
 | 
| +++ b/chromeos/ime/extension_ime_util.cc
 | 
| @@ -0,0 +1,29 @@
 | 
| +// Copyright 2013 The Chromium Authors. All rights reserved.
 | 
| +// Use of this source code is governed by a BSD-style license that can be
 | 
| +// found in the LICENSE file.
 | 
| +
 | 
| +#include "chromeos/ime/extension_ime_util.h"
 | 
| +
 | 
| +#include "base/string_util.h"
 | 
| +
 | 
| +namespace chromeos {
 | 
| +namespace {
 | 
| +const char* kExtensionIMEPrefix = "_ext_ime_";
 | 
| +}  // namespace
 | 
| +
 | 
| +namespace extension_ime_util {
 | 
| +std::string GetInputMethodID(const std::string& extension_id,
 | 
| +                             const std::string& engine_id) {
 | 
| +  DCHECK(!extension_id.empty());
 | 
| +  DCHECK(!engine_id.empty());
 | 
| +  return kExtensionIMEPrefix + extension_id + engine_id;
 | 
| +}
 | 
| +
 | 
| +bool IsExtensionIME(const std::string& input_method_id) {
 | 
| +  return StartsWithASCII(input_method_id,
 | 
| +                         kExtensionIMEPrefix,
 | 
| +                         true);  // Case sensitive.
 | 
| +}
 | 
| +
 | 
| +}  // namespace extension_ime_util
 | 
| +}  // namespace chromeos
 | 
| 
 |