Chromium Code Reviews| Index: public/web/WebViewClient.h |
| diff --git a/public/web/WebViewClient.h b/public/web/WebViewClient.h |
| index fa39080f10f3357a060fe897c946eee91b29d73e..b5bc7c2c98006a0cb3b1e4b559887e98532e723a 100644 |
| --- a/public/web/WebViewClient.h |
| +++ b/public/web/WebViewClient.h |
| @@ -134,6 +134,9 @@ public: |
| // indicating that the default action should be suppressed. |
| virtual bool handleCurrentKeyboardEvent() { return false; } |
| + // This method converts from the embedded-supplied domCode to |
| + // the string value of the domCode |
| + virtual const char* keyboardDOMCodeValue(long domCode) { return ""; } |
|
Wez
2015/01/08 01:14:48
Suggest domCodeStringFromEnum() or something along
Habib Virji
2015/01/12 15:34:17
Done.
|
| // Dialogs ------------------------------------------------------------- |