| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| 6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 | 9 |
| 10 MSVC_PUSH_WARNING_LEVEL(0); | 10 MSVC_PUSH_WARNING_LEVEL(0); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 // WebCore::FrameLoaderClient ---------------------------------------------- | 37 // WebCore::FrameLoaderClient ---------------------------------------------- |
| 38 | 38 |
| 39 virtual void frameLoaderDestroyed(); | 39 virtual void frameLoaderDestroyed(); |
| 40 | 40 |
| 41 // Notifies the WebView delegate that the JS window object has been cleared, | 41 // Notifies the WebView delegate that the JS window object has been cleared, |
| 42 // giving it a chance to bind native objects to the window before script | 42 // giving it a chance to bind native objects to the window before script |
| 43 // parsing begins. | 43 // parsing begins. |
| 44 virtual void windowObjectCleared(); | 44 virtual void windowObjectCleared(); |
| 45 virtual void documentElementAvailable(); | 45 virtual void documentElementAvailable(); |
| 46 | 46 |
| 47 virtual void didCreateScriptContext(); |
| 48 virtual void didDestroyScriptContext(); |
| 49 |
| 47 virtual bool hasWebView() const; // mainly for assertions | 50 virtual bool hasWebView() const; // mainly for assertions |
| 48 virtual bool hasFrameView() const; // ditto | 51 virtual bool hasFrameView() const; // ditto |
| 49 | 52 |
| 50 virtual void makeRepresentation(WebCore::DocumentLoader*); | 53 virtual void makeRepresentation(WebCore::DocumentLoader*); |
| 51 virtual void forceLayout(); | 54 virtual void forceLayout(); |
| 52 virtual void forceLayoutForNonHTML(); | 55 virtual void forceLayoutForNonHTML(); |
| 53 | 56 |
| 54 virtual void setCopiesOnScroll(); | 57 virtual void setCopiesOnScroll(); |
| 55 | 58 |
| 56 virtual void detachedFromParent2(); | 59 virtual void detachedFromParent2(); |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 WebPluginContainer* plugin_widget_; | 250 WebPluginContainer* plugin_widget_; |
| 248 // Indicates if we need to send over the initial notification to the plugin | 251 // Indicates if we need to send over the initial notification to the plugin |
| 249 // which specifies that the plugin should be ready to accept data. | 252 // which specifies that the plugin should be ready to accept data. |
| 250 bool sent_initial_response_to_plugin_; | 253 bool sent_initial_response_to_plugin_; |
| 251 | 254 |
| 252 // The disposition to use for the next call to dispatchCreatePage. | 255 // The disposition to use for the next call to dispatchCreatePage. |
| 253 WindowOpenDisposition next_window_open_disposition_; | 256 WindowOpenDisposition next_window_open_disposition_; |
| 254 }; | 257 }; |
| 255 | 258 |
| 256 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 259 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
| OLD | NEW |