| 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 27 matching lines...) Expand all Loading... |
| 38 #include "sky/engine/public/web/WebWidget.h" | 38 #include "sky/engine/public/web/WebWidget.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class WebFrame; | 42 class WebFrame; |
| 43 class WebFrameClient; | 43 class WebFrameClient; |
| 44 class WebHitTestResult; | 44 class WebHitTestResult; |
| 45 class WebSettings; | 45 class WebSettings; |
| 46 class WebSpellCheckClient; | 46 class WebSpellCheckClient; |
| 47 class WebViewClient; | 47 class WebViewClient; |
| 48 struct WebActiveWheelFlingParameters; | |
| 49 struct WebPoint; | 48 struct WebPoint; |
| 50 | 49 |
| 51 class WebView : public WebWidget { | 50 class WebView : public WebWidget { |
| 52 public: | 51 public: |
| 53 // Initialization ------------------------------------------------------ | 52 // Initialization ------------------------------------------------------ |
| 54 | 53 |
| 55 // Creates a WebView that is NOT yet initialized. You will need to | 54 // Creates a WebView that is NOT yet initialized. You will need to |
| 56 // call setMainFrame to finish the initialization. It is valid | 55 // call setMainFrame to finish the initialization. It is valid |
| 57 // to pass a null client pointer. | 56 // to pass a null client pointer. |
| 58 BLINK_EXPORT static WebView* create(WebViewClient*); | 57 BLINK_EXPORT static WebView* create(WebViewClient*); |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 153 |
| 155 // Testing functionality for TestRunner --------------------------------- | 154 // Testing functionality for TestRunner --------------------------------- |
| 156 | 155 |
| 157 protected: | 156 protected: |
| 158 ~WebView() {} | 157 ~WebView() {} |
| 159 }; | 158 }; |
| 160 | 159 |
| 161 } // namespace blink | 160 } // namespace blink |
| 162 | 161 |
| 163 #endif // SKY_ENGINE_PUBLIC_WEB_WEBVIEW_H_ | 162 #endif // SKY_ENGINE_PUBLIC_WEB_WEBVIEW_H_ |
| OLD | NEW |