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

Unified Diff: chromeos/ime/extension_ime_util.cc

Issue 12583012: Introduce IsMemberOfExtension function into ExtensionIMEUtil. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 7 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/ime/extension_ime_util.h ('k') | chromeos/ime/extension_ime_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/ime/extension_ime_util.cc
diff --git a/chromeos/ime/extension_ime_util.cc b/chromeos/ime/extension_ime_util.cc
index 7e6d3ac267276eae811ff8575fdfb99ed12789a4..3c95751edd11022c9daa726fd8143994463e84da 100644
--- a/chromeos/ime/extension_ime_util.cc
+++ b/chromeos/ime/extension_ime_util.cc
@@ -25,5 +25,12 @@ bool IsExtensionIME(const std::string& input_method_id) {
true); // Case sensitive.
}
+bool IsMemberOfExtension(const std::string& input_method_id,
+ const std::string& extension_id) {
+ return StartsWithASCII(input_method_id,
+ kExtensionIMEPrefix + extension_id,
+ true); // Case sensitive.
+}
+
} // namespace extension_ime_util
} // namespace chromeos
« no previous file with comments | « chromeos/ime/extension_ime_util.h ('k') | chromeos/ime/extension_ime_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698