| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * Copyright (C) 2012 Google Inc. All rights reserved. | 4 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 virtual void dispatchDidFinishDocumentLoad() = 0; | 112 virtual void dispatchDidFinishDocumentLoad() = 0; |
| 113 virtual void dispatchDidFinishLoad() = 0; | 113 virtual void dispatchDidFinishLoad() = 0; |
| 114 virtual void dispatchDidChangeThemeColor() = 0; | 114 virtual void dispatchDidChangeThemeColor() = 0; |
| 115 | 115 |
| 116 virtual NavigationPolicy decidePolicyForNavigation( | 116 virtual NavigationPolicy decidePolicyForNavigation( |
| 117 const ResourceRequest&, | 117 const ResourceRequest&, |
| 118 DocumentLoader*, | 118 DocumentLoader*, |
| 119 NavigationType, | 119 NavigationType, |
| 120 NavigationPolicy, | 120 NavigationPolicy, |
| 121 bool shouldReplaceCurrentEntry, | 121 bool shouldReplaceCurrentEntry, |
| 122 bool isClientRedirect) = 0; | 122 bool isClientRedirect, |
| 123 HTMLFormElement*) = 0; |
| 123 | 124 |
| 124 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0; | 125 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0; |
| 125 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0; | 126 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0; |
| 126 | 127 |
| 127 virtual void didStartLoading(LoadStartType) = 0; | 128 virtual void didStartLoading(LoadStartType) = 0; |
| 128 virtual void progressEstimateChanged(double progressEstimate) = 0; | 129 virtual void progressEstimateChanged(double progressEstimate) = 0; |
| 129 virtual void didStopLoading() = 0; | 130 virtual void didStopLoading() = 0; |
| 130 | 131 |
| 131 virtual void loadURLExternally(const ResourceRequest&, | 132 virtual void loadURLExternally(const ResourceRequest&, |
| 132 NavigationPolicy, | 133 NavigationPolicy, |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 } | 336 } |
| 336 | 337 |
| 337 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is | 338 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is |
| 338 // returned if the URL is not overriden. | 339 // returned if the URL is not overriden. |
| 339 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } | 340 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } |
| 340 }; | 341 }; |
| 341 | 342 |
| 342 } // namespace blink | 343 } // namespace blink |
| 343 | 344 |
| 344 #endif // FrameLoaderClient_h | 345 #endif // FrameLoaderClient_h |
| OLD | NEW |