Chromium Code Reviews| Index: chrome/renderer/chrome_render_process_observer.cc |
| diff --git a/chrome/renderer/chrome_render_process_observer.cc b/chrome/renderer/chrome_render_process_observer.cc |
| index 450f1cdf0e142087d63521a076b5f6a6fc9435ea..f482e30fbf3f46cca2a72f217b8728b008969ef9 100644 |
| --- a/chrome/renderer/chrome_render_process_observer.cc |
| +++ b/chrome/renderer/chrome_render_process_observer.cc |
| @@ -259,11 +259,7 @@ ChromeRenderProcessObserver::ChromeRenderProcessObserver( |
| } |
| #if defined(ENABLE_AUTOFILL_DIALOG) |
|
Ilya Sherman
2014/03/26 03:57:50
Is this #define still needed?
Evan Stade
2014/03/26 17:41:59
For now yes, I believe, for example it's false on
|
| - bool enable_autofill = !command_line.HasSwitch( |
| - autofill::switches::kDisableInteractiveAutocomplete); |
| - WebRuntimeFeatures::enableRequestAutocomplete( |
| - enable_autofill || |
| - command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures)); |
| + WebRuntimeFeatures::enableRequestAutocomplete(true); |
|
Ilya Sherman
2014/03/26 03:57:50
Is this method still needed?
Evan Stade
2014/03/26 17:41:59
Yes, as long as ENABLE_AUTOFILL_DIALOG exists
|
| #endif |
| RenderThread* thread = RenderThread::Get(); |