| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 using WebWidget::close; | 84 using WebWidget::close; |
| 85 using WebWidget::size; | 85 using WebWidget::size; |
| 86 using WebWidget::resize; | 86 using WebWidget::resize; |
| 87 using WebWidget::resizeVisualViewport; | 87 using WebWidget::resizeVisualViewport; |
| 88 using WebWidget::didEnterFullScreen; | 88 using WebWidget::didEnterFullScreen; |
| 89 using WebWidget::didExitFullScreen; | 89 using WebWidget::didExitFullScreen; |
| 90 using WebWidget::beginFrame; | 90 using WebWidget::beginFrame; |
| 91 using WebWidget::updateAllLifecyclePhases; | 91 using WebWidget::updateAllLifecyclePhases; |
| 92 using WebWidget::paint; | 92 using WebWidget::paint; |
| 93 using WebWidget::paintIgnoringCompositing; | 93 using WebWidget::paintIgnoringCompositing; |
| 94 using WebWidget::layoutAndPaintAsync; | |
| 95 using WebWidget::compositeAndReadbackAsync; | 94 using WebWidget::compositeAndReadbackAsync; |
| 96 using WebWidget::themeChanged; | 95 using WebWidget::themeChanged; |
| 97 using WebWidget::handleInputEvent; | 96 using WebWidget::handleInputEvent; |
| 98 using WebWidget::setCursorVisibilityState; | 97 using WebWidget::setCursorVisibilityState; |
| 99 using WebWidget::hasTouchEventHandlersAt; | 98 using WebWidget::hasTouchEventHandlersAt; |
| 100 using WebWidget::applyViewportDeltas; | 99 using WebWidget::applyViewportDeltas; |
| 101 using WebWidget::mouseCaptureLost; | 100 using WebWidget::mouseCaptureLost; |
| 102 using WebWidget::setFocus; | 101 using WebWidget::setFocus; |
| 103 using WebWidget::setComposition; | 102 using WebWidget::setComposition; |
| 104 using WebWidget::confirmComposition; | 103 using WebWidget::confirmComposition; |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 // completed. | 533 // completed. |
| 535 WebWidget* widget() { return this; } | 534 WebWidget* widget() { return this; } |
| 536 | 535 |
| 537 protected: | 536 protected: |
| 538 ~WebView() {} | 537 ~WebView() {} |
| 539 }; | 538 }; |
| 540 | 539 |
| 541 } // namespace blink | 540 } // namespace blink |
| 542 | 541 |
| 543 #endif | 542 #endif |
| OLD | NEW |