As per VD NextBrowser team, IME should not be shown by default on chrome
launch, hence disabling setting focus for location bar by default.
Change-Id: I5b51a513cd2f67a4ebe5bdbc8b6924976ad865f9
Signed-off-by: Gajendra N <gajendra.n@samsung.com>
url.host_piece() == chrome::kChromeUINewTabHost) ||
(virtual_url.SchemeIs(content::kChromeUIScheme) &&
virtual_url.host_piece() == chrome::kChromeUINewTabHost)) {
+#if defined(BUILD_CHROME)
+ // As per VD NextBrowser team, IME should not be shown by default on
+ // chrome launch, hence disabling setting the focus for location bar.
+ // Currently its disabled for chrome:// new tab scenario. If the same
+ // behaviour is required for all cases, try and test early returning
+ // at top of this function body.
+ return false;
+#else
return true;
+#endif
}
}