| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 virtual void dispatchDidFinishLoad() = 0; | 116 virtual void dispatchDidFinishLoad() = 0; |
| 117 virtual void dispatchDidChangeThemeColor() = 0; | 117 virtual void dispatchDidChangeThemeColor() = 0; |
| 118 | 118 |
| 119 virtual NavigationPolicy decidePolicyForNavigation( | 119 virtual NavigationPolicy decidePolicyForNavigation( |
| 120 const ResourceRequest&, | 120 const ResourceRequest&, |
| 121 DocumentLoader*, | 121 DocumentLoader*, |
| 122 NavigationType, | 122 NavigationType, |
| 123 NavigationPolicy, | 123 NavigationPolicy, |
| 124 bool shouldReplaceCurrentEntry, | 124 bool shouldReplaceCurrentEntry, |
| 125 bool isClientRedirect, | 125 bool isClientRedirect, |
| 126 HTMLFormElement*, | 126 HTMLFormElement*) = 0; |
| 127 ContentSecurityPolicyDisposition | |
| 128 shouldCheckMainWorldContentSecurityPolicy) = 0; | |
| 129 | 127 |
| 130 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0; | 128 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0; |
| 131 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0; | 129 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0; |
| 132 | 130 |
| 133 virtual void didStartLoading(LoadStartType) = 0; | 131 virtual void didStartLoading(LoadStartType) = 0; |
| 134 virtual void progressEstimateChanged(double progressEstimate) = 0; | 132 virtual void progressEstimateChanged(double progressEstimate) = 0; |
| 135 virtual void didStopLoading() = 0; | 133 virtual void didStopLoading() = 0; |
| 136 | 134 |
| 137 virtual void loadURLExternally(const ResourceRequest&, | 135 virtual void loadURLExternally(const ResourceRequest&, |
| 138 NavigationPolicy, | 136 NavigationPolicy, |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } | 338 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } |
| 341 | 339 |
| 342 virtual BlameContext* frameBlameContext() { return nullptr; } | 340 virtual BlameContext* frameBlameContext() { return nullptr; } |
| 343 | 341 |
| 344 virtual void setHasReceivedUserGesture() {} | 342 virtual void setHasReceivedUserGesture() {} |
| 345 }; | 343 }; |
| 346 | 344 |
| 347 } // namespace blink | 345 } // namespace blink |
| 348 | 346 |
| 349 #endif // LocalFrameClient_h | 347 #endif // LocalFrameClient_h |
| OLD | NEW |