| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 void DispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; | 100 void DispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; |
| 101 void DispatchDidFailProvisionalLoad(const ResourceError&, | 101 void DispatchDidFailProvisionalLoad(const ResourceError&, |
| 102 HistoryCommitType) override; | 102 HistoryCommitType) override; |
| 103 void DispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; | 103 void DispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; |
| 104 void DispatchDidFinishDocumentLoad() override; | 104 void DispatchDidFinishDocumentLoad() override; |
| 105 void DispatchDidFinishLoad() override; | 105 void DispatchDidFinishLoad() override; |
| 106 | 106 |
| 107 void DispatchDidChangeThemeColor() override; | 107 void DispatchDidChangeThemeColor() override; |
| 108 NavigationPolicy DecidePolicyForNavigation( | 108 NavigationPolicy DecidePolicyForNavigation( |
| 109 const ResourceRequest&, | 109 const ResourceRequest&, |
| 110 Document* origin_document, |
| 110 DocumentLoader*, | 111 DocumentLoader*, |
| 111 NavigationType, | 112 NavigationType, |
| 112 NavigationPolicy, | 113 NavigationPolicy, |
| 113 bool should_replace_current_entry, | 114 bool should_replace_current_entry, |
| 114 bool is_client_redirect, | 115 bool is_client_redirect, |
| 115 HTMLFormElement*, | 116 HTMLFormElement*, |
| 116 ContentSecurityPolicyDisposition should_bypass_main_world_csp) override; | 117 ContentSecurityPolicyDisposition should_bypass_main_world_csp) override; |
| 117 void DispatchWillSendSubmitEvent(HTMLFormElement*) override; | 118 void DispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 118 void DispatchWillSubmitForm(HTMLFormElement*) override; | 119 void DispatchWillSubmitForm(HTMLFormElement*) override; |
| 119 void DidStartLoading(LoadStartType) override; | 120 void DidStartLoading(LoadStartType) override; |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 244 |
| 244 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 245 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
| 245 LocalFrameClient, | 246 LocalFrameClient, |
| 246 client, | 247 client, |
| 247 client->IsLocalFrameClientImpl(), | 248 client->IsLocalFrameClientImpl(), |
| 248 client.IsLocalFrameClientImpl()); | 249 client.IsLocalFrameClientImpl()); |
| 249 | 250 |
| 250 } // namespace blink | 251 } // namespace blink |
| 251 | 252 |
| 252 #endif | 253 #endif |
| OLD | NEW |