| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 using WebWidget::layoutAndPaintAsync; | 91 using WebWidget::layoutAndPaintAsync; |
| 92 using WebWidget::compositeAndReadbackAsync; | 92 using WebWidget::compositeAndReadbackAsync; |
| 93 using WebWidget::themeChanged; | 93 using WebWidget::themeChanged; |
| 94 using WebWidget::handleInputEvent; | 94 using WebWidget::handleInputEvent; |
| 95 using WebWidget::setCursorVisibilityState; | 95 using WebWidget::setCursorVisibilityState; |
| 96 using WebWidget::hasTouchEventHandlersAt; | 96 using WebWidget::hasTouchEventHandlersAt; |
| 97 using WebWidget::applyViewportDeltas; | 97 using WebWidget::applyViewportDeltas; |
| 98 using WebWidget::mouseCaptureLost; | 98 using WebWidget::mouseCaptureLost; |
| 99 using WebWidget::setFocus; | 99 using WebWidget::setFocus; |
| 100 using WebWidget::compositionRange; | 100 using WebWidget::compositionRange; |
| 101 using WebWidget::textInputInfo; | |
| 102 using WebWidget::textInputType; | |
| 103 using WebWidget::selectionBounds; | 101 using WebWidget::selectionBounds; |
| 104 using WebWidget::selectionTextDirection; | 102 using WebWidget::selectionTextDirection; |
| 105 using WebWidget::isSelectionAnchorFirst; | 103 using WebWidget::isSelectionAnchorFirst; |
| 106 using WebWidget::caretOrSelectionRange; | 104 using WebWidget::caretOrSelectionRange; |
| 107 using WebWidget::setTextDirection; | 105 using WebWidget::setTextDirection; |
| 108 using WebWidget::isAcceleratedCompositingActive; | 106 using WebWidget::isAcceleratedCompositingActive; |
| 109 using WebWidget::isWebView; | 107 using WebWidget::isWebView; |
| 110 using WebWidget::isPagePopup; | 108 using WebWidget::isPagePopup; |
| 111 using WebWidget::willCloseLayerTreeView; | 109 using WebWidget::willCloseLayerTreeView; |
| 112 using WebWidget::didAcquirePointerLock; | 110 using WebWidget::didAcquirePointerLock; |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 // completed. | 497 // completed. |
| 500 WebWidget* widget() { return this; } | 498 WebWidget* widget() { return this; } |
| 501 | 499 |
| 502 protected: | 500 protected: |
| 503 ~WebView() {} | 501 ~WebView() {} |
| 504 }; | 502 }; |
| 505 | 503 |
| 506 } // namespace blink | 504 } // namespace blink |
| 507 | 505 |
| 508 #endif | 506 #endif |
| OLD | NEW |