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

Side by Side Diff: public/web/WebViewClient.h

Issue 663523002: Adding support for DOM3 KeyboardEvents Code in KeyboardEvents (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to use domCode instead of native domCode Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 // This method is called in response to WebView's handleInputEvent() 128 // This method is called in response to WebView's handleInputEvent()
129 // when the default action for the current keyboard event is not 129 // when the default action for the current keyboard event is not
130 // suppressed by the page, to give the embedder a chance to handle 130 // suppressed by the page, to give the embedder a chance to handle
131 // the keyboard event specially. 131 // the keyboard event specially.
132 // 132 //
133 // Returns true if the keyboard event was handled by the embedder, 133 // Returns true if the keyboard event was handled by the embedder,
134 // indicating that the default action should be suppressed. 134 // indicating that the default action should be suppressed.
135 virtual bool handleCurrentKeyboardEvent() { return false; } 135 virtual bool handleCurrentKeyboardEvent() { return false; }
136 136
137 // This method converts from the embedded-supplied domCode to
138 // the string value of the domCode
139 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.
137 140
138 // Dialogs ------------------------------------------------------------- 141 // Dialogs -------------------------------------------------------------
139 142
140 // This method returns immediately after showing the dialog. When the 143 // This method returns immediately after showing the dialog. When the
141 // dialog is closed, it should call the WebFileChooserCompletion to 144 // dialog is closed, it should call the WebFileChooserCompletion to
142 // pass the results of the dialog. Returns false if 145 // pass the results of the dialog. Returns false if
143 // WebFileChooseCompletion will never be called. 146 // WebFileChooseCompletion will never be called.
144 virtual bool runFileChooser(const WebFileChooserParams&, 147 virtual bool runFileChooser(const WebFileChooserParams&,
145 WebFileChooserCompletion*) { return false; } 148 WebFileChooserCompletion*) { return false; }
146 149
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 // Informs the browser that the draggable regions have been updated. 296 // Informs the browser that the draggable regions have been updated.
294 virtual void draggableRegionsChanged() { } 297 virtual void draggableRegionsChanged() { }
295 298
296 protected: 299 protected:
297 ~WebViewClient() { } 300 ~WebViewClient() { }
298 }; 301 };
299 302
300 } // namespace blink 303 } // namespace blink
301 304
302 #endif 305 #endif
OLDNEW
« Source/web/tests/WebPluginContainerTest.cpp ('K') | « public/web/WebInputEvent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698