| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 using WebWidget::ResizeVisualViewport; | 83 using WebWidget::ResizeVisualViewport; |
| 84 using WebWidget::DidEnterFullscreen; | 84 using WebWidget::DidEnterFullscreen; |
| 85 using WebWidget::DidExitFullscreen; | 85 using WebWidget::DidExitFullscreen; |
| 86 using WebWidget::BeginFrame; | 86 using WebWidget::BeginFrame; |
| 87 using WebWidget::UpdateAllLifecyclePhases; | 87 using WebWidget::UpdateAllLifecyclePhases; |
| 88 using WebWidget::Paint; | 88 using WebWidget::Paint; |
| 89 using WebWidget::PaintIgnoringCompositing; | 89 using WebWidget::PaintIgnoringCompositing; |
| 90 using WebWidget::LayoutAndPaintAsync; | 90 using WebWidget::LayoutAndPaintAsync; |
| 91 using WebWidget::CompositeAndReadbackAsync; | 91 using WebWidget::CompositeAndReadbackAsync; |
| 92 using WebWidget::ThemeChanged; | 92 using WebWidget::ThemeChanged; |
| 93 using WebWidget::HitTestResultAt; |
| 93 using WebWidget::HandleInputEvent; | 94 using WebWidget::HandleInputEvent; |
| 94 using WebWidget::SetCursorVisibilityState; | 95 using WebWidget::SetCursorVisibilityState; |
| 95 using WebWidget::HasTouchEventHandlersAt; | 96 using WebWidget::HasTouchEventHandlersAt; |
| 96 using WebWidget::ApplyViewportDeltas; | 97 using WebWidget::ApplyViewportDeltas; |
| 97 using WebWidget::MouseCaptureLost; | 98 using WebWidget::MouseCaptureLost; |
| 98 using WebWidget::SetFocus; | 99 using WebWidget::SetFocus; |
| 99 using WebWidget::CompositionRange; | 100 using WebWidget::CompositionRange; |
| 100 using WebWidget::SelectionBounds; | 101 using WebWidget::SelectionBounds; |
| 101 using WebWidget::SelectionTextDirection; | 102 using WebWidget::SelectionTextDirection; |
| 102 using WebWidget::IsSelectionAnchorFirst; | 103 using WebWidget::IsSelectionAnchorFirst; |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 // completed. | 469 // completed. |
| 469 WebWidget* GetWidget() { return this; } | 470 WebWidget* GetWidget() { return this; } |
| 470 | 471 |
| 471 protected: | 472 protected: |
| 472 ~WebView() {} | 473 ~WebView() {} |
| 473 }; | 474 }; |
| 474 | 475 |
| 475 } // namespace blink | 476 } // namespace blink |
| 476 | 477 |
| 477 #endif | 478 #endif |
| OLD | NEW |