| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 using WebWidget::isSelectionAnchorFirst; | 108 using WebWidget::isSelectionAnchorFirst; |
| 109 using WebWidget::caretOrSelectionRange; | 109 using WebWidget::caretOrSelectionRange; |
| 110 using WebWidget::setTextDirection; | 110 using WebWidget::setTextDirection; |
| 111 using WebWidget::isAcceleratedCompositingActive; | 111 using WebWidget::isAcceleratedCompositingActive; |
| 112 using WebWidget::isWebView; | 112 using WebWidget::isWebView; |
| 113 using WebWidget::isPagePopup; | 113 using WebWidget::isPagePopup; |
| 114 using WebWidget::willCloseLayerTreeView; | 114 using WebWidget::willCloseLayerTreeView; |
| 115 using WebWidget::didAcquirePointerLock; | 115 using WebWidget::didAcquirePointerLock; |
| 116 using WebWidget::didNotAcquirePointerLock; | 116 using WebWidget::didNotAcquirePointerLock; |
| 117 using WebWidget::didLosePointerLock; | 117 using WebWidget::didLosePointerLock; |
| 118 using WebWidget::didChangeWindowResizerRect; | |
| 119 using WebWidget::backgroundColor; | 118 using WebWidget::backgroundColor; |
| 120 using WebWidget::pagePopup; | 119 using WebWidget::pagePopup; |
| 121 using WebWidget::updateTopControlsState; | 120 using WebWidget::updateTopControlsState; |
| 122 | 121 |
| 123 // Initialization ------------------------------------------------------ | 122 // Initialization ------------------------------------------------------ |
| 124 | 123 |
| 125 // Creates a WebView that is NOT yet initialized. You will need to | 124 // Creates a WebView that is NOT yet initialized. You will need to |
| 126 // call setMainFrame to finish the initialization. It is valid | 125 // call setMainFrame to finish the initialization. It is valid |
| 127 // to pass a null client pointer. The WebPageVisibilityState defines the | 126 // to pass a null client pointer. The WebPageVisibilityState defines the |
| 128 // initial visibility of the page. | 127 // initial visibility of the page. |
| (...skipping 405 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 |