| OLD | NEW |
| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 // Ask users to choose date/time for the specified parameters. When a user | 156 // Ask users to choose date/time for the specified parameters. When a user |
| 157 // chooses a value, an implementation of this function should call | 157 // chooses a value, an implementation of this function should call |
| 158 // WebDateTimeChooserCompletion::didChooseValue or didCancelChooser. If the | 158 // WebDateTimeChooserCompletion::didChooseValue or didCancelChooser. If the |
| 159 // implementation opened date/time chooser UI successfully, it should return | 159 // implementation opened date/time chooser UI successfully, it should return |
| 160 // true. This function is used only if ExternalDateTimeChooser is used. | 160 // true. This function is used only if ExternalDateTimeChooser is used. |
| 161 virtual bool openDateTimeChooser(const WebDateTimeChooserParams&, WebDateTim
eChooserCompletion*) { return false; } | 161 virtual bool openDateTimeChooser(const WebDateTimeChooserParams&, WebDateTim
eChooserCompletion*) { return false; } |
| 162 | 162 |
| 163 // Show a notification popup for the specified form vaidation messages | 163 // Show a notification popup for the specified form vaidation messages |
| 164 // besides the anchor rectangle. An implementation of this function should | 164 // besides the anchor rectangle. An implementation of this function should |
| 165 // not hide the popup until hideValidationMessage call. | 165 // not hide the popup until hideValidationMessage call. |
| 166 virtual void showValidationMessage(const WebRect& anchorInRootView, const We
bString& mainText, WebTextDirection mainTextDir, const WebString& supplementalTe
xt, WebTextDirection supplementalTextDir) { } |
| 167 // FIXME: BUG91638, when landed on chrome side, this will be removed. |
| 166 virtual void showValidationMessage(const WebRect& anchorInRootView, const We
bString& mainText, const WebString& supplementalText, WebTextDirection hint) { } | 168 virtual void showValidationMessage(const WebRect& anchorInRootView, const We
bString& mainText, const WebString& supplementalText, WebTextDirection hint) { } |
| 167 | 169 |
| 168 // Hide notifation popup for form validation messages. | 170 // Hide notifation popup for form validation messages. |
| 169 virtual void hideValidationMessage() { } | 171 virtual void hideValidationMessage() { } |
| 170 | 172 |
| 171 // Move the existing notifation popup to the new anchor position. | 173 // Move the existing notifation popup to the new anchor position. |
| 172 virtual void moveValidationMessage(const WebRect& anchorInRootView) { } | 174 virtual void moveValidationMessage(const WebRect& anchorInRootView) { } |
| 173 | 175 |
| 174 | 176 |
| 175 // UI ------------------------------------------------------------------ | 177 // UI ------------------------------------------------------------------ |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 // Informs the browser that the draggable regions have been updated. | 310 // Informs the browser that the draggable regions have been updated. |
| 309 virtual void draggableRegionsChanged() { } | 311 virtual void draggableRegionsChanged() { } |
| 310 | 312 |
| 311 protected: | 313 protected: |
| 312 ~WebViewClient() { } | 314 ~WebViewClient() { } |
| 313 }; | 315 }; |
| 314 | 316 |
| 315 } // namespace blink | 317 } // namespace blink |
| 316 | 318 |
| 317 #endif | 319 #endif |
| OLD | NEW |