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

Unified Diff: chrome/browser/extensions/extension_service.cc

Issue 7508014: Add member variables to VirtualKeyboardSelector (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rewrote CheckUrls Created 9 years, 4 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 | « chrome/browser/chromeos/input_method/virtual_keyboard_selector_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 5c05c6cb9b16dba738258e193fd3224aac37b1c0..acd3f38730a547d9db452d142ee556983d4ca2db 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -1464,9 +1464,11 @@ void ExtensionService::NotifyExtensionLoaded(const Extension* extension) {
!component->layouts.empty()) {
const bool is_system =
!Extension::IsExternalLocation(extension->location());
- input_method_manager->RegisterVirtualKeyboard(extension->url(),
- component->layouts,
- is_system);
+ input_method_manager->RegisterVirtualKeyboard(
+ extension->url(),
+ component->name, // human-readable name of the keyboard extension.
+ component->layouts,
+ is_system);
}
#endif
}
« no previous file with comments | « chrome/browser/chromeos/input_method/virtual_keyboard_selector_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698