| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 virtual void DispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; | 113 virtual void DispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; |
| 114 virtual void DispatchDidFailProvisionalLoad(const ResourceError&, | 114 virtual void DispatchDidFailProvisionalLoad(const ResourceError&, |
| 115 HistoryCommitType) = 0; | 115 HistoryCommitType) = 0; |
| 116 virtual void DispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0; | 116 virtual void DispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0; |
| 117 virtual void DispatchDidFinishDocumentLoad() = 0; | 117 virtual void DispatchDidFinishDocumentLoad() = 0; |
| 118 virtual void DispatchDidFinishLoad() = 0; | 118 virtual void DispatchDidFinishLoad() = 0; |
| 119 virtual void DispatchDidChangeThemeColor() = 0; | 119 virtual void DispatchDidChangeThemeColor() = 0; |
| 120 | 120 |
| 121 virtual NavigationPolicy DecidePolicyForNavigation( | 121 virtual NavigationPolicy DecidePolicyForNavigation( |
| 122 const ResourceRequest&, | 122 const ResourceRequest&, |
| 123 Document* origin_document, |
| 123 DocumentLoader*, | 124 DocumentLoader*, |
| 124 NavigationType, | 125 NavigationType, |
| 125 NavigationPolicy, | 126 NavigationPolicy, |
| 126 bool should_replace_current_entry, | 127 bool should_replace_current_entry, |
| 127 bool is_client_redirect, | 128 bool is_client_redirect, |
| 128 HTMLFormElement*, | 129 HTMLFormElement*, |
| 129 ContentSecurityPolicyDisposition | 130 ContentSecurityPolicyDisposition |
| 130 should_check_main_world_content_security_policy) = 0; | 131 should_check_main_world_content_security_policy) = 0; |
| 131 | 132 |
| 132 virtual void DispatchWillSendSubmitEvent(HTMLFormElement*) = 0; | 133 virtual void DispatchWillSendSubmitEvent(HTMLFormElement*) = 0; |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 virtual void AbortClientNavigation() {} | 337 virtual void AbortClientNavigation() {} |
| 337 | 338 |
| 338 virtual TextCheckerClient& GetTextCheckerClient() const = 0; | 339 virtual TextCheckerClient& GetTextCheckerClient() const = 0; |
| 339 | 340 |
| 340 virtual std::unique_ptr<WebURLLoader> CreateURLLoader() = 0; | 341 virtual std::unique_ptr<WebURLLoader> CreateURLLoader() = 0; |
| 341 }; | 342 }; |
| 342 | 343 |
| 343 } // namespace blink | 344 } // namespace blink |
| 344 | 345 |
| 345 #endif // LocalFrameClient_h | 346 #endif // LocalFrameClient_h |
| OLD | NEW |