| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 using WebWidget::didLosePointerLock; | 119 using WebWidget::didLosePointerLock; |
| 120 using WebWidget::didChangeWindowResizerRect; | 120 using WebWidget::didChangeWindowResizerRect; |
| 121 using WebWidget::backgroundColor; | 121 using WebWidget::backgroundColor; |
| 122 using WebWidget::pagePopup; | 122 using WebWidget::pagePopup; |
| 123 using WebWidget::updateTopControlsState; | 123 using WebWidget::updateTopControlsState; |
| 124 | 124 |
| 125 // Initialization ------------------------------------------------------ | 125 // Initialization ------------------------------------------------------ |
| 126 | 126 |
| 127 // Creates a WebView that is NOT yet initialized. You will need to | 127 // Creates a WebView that is NOT yet initialized. You will need to |
| 128 // call setMainFrame to finish the initialization. It is valid | 128 // call setMainFrame to finish the initialization. It is valid |
| 129 // to pass a null client pointer. | 129 // to pass a null client pointer. The WebPageVisibilityState defines the |
| 130 BLINK_EXPORT static WebView* create(WebViewClient*); | 130 // initial visibility of the page. |
| 131 BLINK_EXPORT static WebView* create(WebViewClient*, WebPageVisibilityState); |
| 131 | 132 |
| 132 // After creating a WebView, you should immediately call this method. | 133 // After creating a WebView, you should immediately call this method. |
| 133 // You can optionally modify the settings before calling this method. | 134 // You can optionally modify the settings before calling this method. |
| 134 // This WebFrame will receive events for the main frame and must not | 135 // This WebFrame will receive events for the main frame and must not |
| 135 // be null. | 136 // be null. |
| 136 virtual void setMainFrame(WebFrame*) = 0; | 137 virtual void setMainFrame(WebFrame*) = 0; |
| 137 | 138 |
| 138 // Initializes the various client interfaces. | 139 // Initializes the various client interfaces. |
| 139 virtual void setCredentialManagerClient(WebCredentialManagerClient*) = 0; | 140 virtual void setCredentialManagerClient(WebCredentialManagerClient*) = 0; |
| 140 virtual void setPrerendererClient(WebPrerendererClient*) = 0; | 141 virtual void setPrerendererClient(WebPrerendererClient*) = 0; |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 // completed. | 528 // completed. |
| 528 WebWidget* widget() { return this; } | 529 WebWidget* widget() { return this; } |
| 529 | 530 |
| 530 protected: | 531 protected: |
| 531 ~WebView() {} | 532 ~WebView() {} |
| 532 }; | 533 }; |
| 533 | 534 |
| 534 } // namespace blink | 535 } // namespace blink |
| 535 | 536 |
| 536 #endif | 537 #endif |
| OLD | NEW |