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

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 unittest to use different urls and destructor to register same url again 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
« public/web/WebInputEvent.h ('K') | « public/web/WebInputEvent.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 supplied enum value for the key
Rick Byers 2015/01/23 20:38:30 I'm OK using an opaque 'int' here (there are some
Habib Virji 2015/01/26 11:32:35 Done.
138 // to the embedder's DOM |code| string.
139 virtual WebString domCodeStringFromEnum(int domCode) { return ""; }
Rick Byers 2015/01/23 20:38:30 Again, let's be precise about the "enum" in questi
Wez 2015/01/23 20:59:49 IMO "DOM code string" and "DOM code enum" make mos
Habib Virji 2015/01/26 11:32:35 Done.
140
141 // This method converts from the suppled DOM |code| string to the
142 // embedder's enum value for the key.
143 virtual int domEnumFromCodeString(const WebString& codeString) { return 0; }
137 144
138 // Dialogs ------------------------------------------------------------- 145 // Dialogs -------------------------------------------------------------
139 146
140 // This method returns immediately after showing the dialog. When the 147 // This method returns immediately after showing the dialog. When the
141 // dialog is closed, it should call the WebFileChooserCompletion to 148 // dialog is closed, it should call the WebFileChooserCompletion to
142 // pass the results of the dialog. Returns false if 149 // pass the results of the dialog. Returns false if
143 // WebFileChooseCompletion will never be called. 150 // WebFileChooseCompletion will never be called.
144 virtual bool runFileChooser(const WebFileChooserParams&, 151 virtual bool runFileChooser(const WebFileChooserParams&,
145 WebFileChooserCompletion*) { return false; } 152 WebFileChooserCompletion*) { return false; }
146 153
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 // Informs the browser that the draggable regions have been updated. 300 // Informs the browser that the draggable regions have been updated.
294 virtual void draggableRegionsChanged() { } 301 virtual void draggableRegionsChanged() { }
295 302
296 protected: 303 protected:
297 ~WebViewClient() { } 304 ~WebViewClient() { }
298 }; 305 };
299 306
300 } // namespace blink 307 } // namespace blink
301 308
302 #endif 309 #endif
OLDNEW
« public/web/WebInputEvent.h ('K') | « public/web/WebInputEvent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698