| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 using WebWidget::HandleInputEvent; | 93 using WebWidget::HandleInputEvent; |
| 94 using WebWidget::SetCursorVisibilityState; | 94 using WebWidget::SetCursorVisibilityState; |
| 95 using WebWidget::HasTouchEventHandlersAt; | 95 using WebWidget::HasTouchEventHandlersAt; |
| 96 using WebWidget::ApplyViewportDeltas; | 96 using WebWidget::ApplyViewportDeltas; |
| 97 using WebWidget::MouseCaptureLost; | 97 using WebWidget::MouseCaptureLost; |
| 98 using WebWidget::SetFocus; | 98 using WebWidget::SetFocus; |
| 99 using WebWidget::CompositionRange; | 99 using WebWidget::CompositionRange; |
| 100 using WebWidget::SelectionBounds; | 100 using WebWidget::SelectionBounds; |
| 101 using WebWidget::SelectionTextDirection; | 101 using WebWidget::SelectionTextDirection; |
| 102 using WebWidget::IsSelectionAnchorFirst; | 102 using WebWidget::IsSelectionAnchorFirst; |
| 103 using WebWidget::CaretOrSelectionRange; | |
| 104 using WebWidget::SetTextDirection; | 103 using WebWidget::SetTextDirection; |
| 105 using WebWidget::IsAcceleratedCompositingActive; | 104 using WebWidget::IsAcceleratedCompositingActive; |
| 106 using WebWidget::IsWebView; | 105 using WebWidget::IsWebView; |
| 107 using WebWidget::IsPagePopup; | 106 using WebWidget::IsPagePopup; |
| 108 using WebWidget::WillCloseLayerTreeView; | 107 using WebWidget::WillCloseLayerTreeView; |
| 109 using WebWidget::DidAcquirePointerLock; | 108 using WebWidget::DidAcquirePointerLock; |
| 110 using WebWidget::DidNotAcquirePointerLock; | 109 using WebWidget::DidNotAcquirePointerLock; |
| 111 using WebWidget::DidLosePointerLock; | 110 using WebWidget::DidLosePointerLock; |
| 112 using WebWidget::BackgroundColor; | 111 using WebWidget::BackgroundColor; |
| 113 using WebWidget::GetPagePopup; | 112 using WebWidget::GetPagePopup; |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 // completed. | 467 // completed. |
| 469 WebWidget* GetWidget() { return this; } | 468 WebWidget* GetWidget() { return this; } |
| 470 | 469 |
| 471 protected: | 470 protected: |
| 472 ~WebView() {} | 471 ~WebView() {} |
| 473 }; | 472 }; |
| 474 | 473 |
| 475 } // namespace blink | 474 } // namespace blink |
| 476 | 475 |
| 477 #endif | 476 #endif |
| OLD | NEW |