| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011, 2012 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 // Context menu -------------------------------------------------------- | 411 // Context menu -------------------------------------------------------- |
| 412 | 412 |
| 413 virtual void performCustomContextMenuAction(unsigned action) = 0; | 413 virtual void performCustomContextMenuAction(unsigned action) = 0; |
| 414 | 414 |
| 415 // Shows a context menu for the currently focused element. | 415 // Shows a context menu for the currently focused element. |
| 416 virtual void showContextMenu() = 0; | 416 virtual void showContextMenu() = 0; |
| 417 | 417 |
| 418 | 418 |
| 419 // SmartClip support --------------------------------------------------- | 419 // SmartClip support --------------------------------------------------- |
| 420 | 420 |
| 421 virtual void getSmartClipData(WebRect, WebString*, WebRect*) = 0; | 421 virtual WebString getSmartClipData(WebRect) = 0; |
| 422 | 422 |
| 423 | 423 |
| 424 // Popup menu ---------------------------------------------------------- | 424 // Popup menu ---------------------------------------------------------- |
| 425 | 425 |
| 426 // Sets whether select popup menus should be rendered by the browser. | 426 // Sets whether select popup menus should be rendered by the browser. |
| 427 BLINK_EXPORT static void setUseExternalPopupMenus(bool); | 427 BLINK_EXPORT static void setUseExternalPopupMenus(bool); |
| 428 | 428 |
| 429 // Hides any popup (suggestions, selects...) that might be showing. | 429 // Hides any popup (suggestions, selects...) that might be showing. |
| 430 virtual void hidePopups() = 0; | 430 virtual void hidePopups() = 0; |
| 431 | 431 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 | 501 |
| 502 // Testing functionality for TestRunner --------------------------------- | 502 // Testing functionality for TestRunner --------------------------------- |
| 503 | 503 |
| 504 protected: | 504 protected: |
| 505 ~WebView() {} | 505 ~WebView() {} |
| 506 }; | 506 }; |
| 507 | 507 |
| 508 } // namespace blink | 508 } // namespace blink |
| 509 | 509 |
| 510 #endif | 510 #endif |
| OLD | NEW |