| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 void dispatchWillSendRequest(ResourceRequest&) override; | 85 void dispatchWillSendRequest(ResourceRequest&) override; |
| 86 void dispatchDidReceiveResponse(const ResourceResponse&) override; | 86 void dispatchDidReceiveResponse(const ResourceResponse&) override; |
| 87 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, | 87 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, |
| 88 const ResourceResponse&) override; | 88 const ResourceResponse&) override; |
| 89 void dispatchDidHandleOnloadEvents() override; | 89 void dispatchDidHandleOnloadEvents() override; |
| 90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; | 90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; |
| 91 void dispatchDidNavigateWithinPage(HistoryItem*, | 91 void dispatchDidNavigateWithinPage(HistoryItem*, |
| 92 HistoryCommitType, | 92 HistoryCommitType, |
| 93 bool contentInitiated) override; | 93 bool contentInitiated) override; |
| 94 void dispatchWillCommitProvisionalLoad() override; | 94 void dispatchWillCommitProvisionalLoad() override; |
| 95 void dispatchDidStartProvisionalLoad(DocumentLoader*) override; | 95 void dispatchDidStartProvisionalLoad(DocumentLoader*, |
| 96 ResourceRequest&) override; |
| 96 void dispatchDidReceiveTitle(const String&) override; | 97 void dispatchDidReceiveTitle(const String&) override; |
| 97 void dispatchDidChangeIcons(IconType) override; | 98 void dispatchDidChangeIcons(IconType) override; |
| 98 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; | 99 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; |
| 99 void dispatchDidFailProvisionalLoad(const ResourceError&, | 100 void dispatchDidFailProvisionalLoad(const ResourceError&, |
| 100 HistoryCommitType) override; | 101 HistoryCommitType) override; |
| 101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; | 102 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; |
| 102 void dispatchDidFinishDocumentLoad() override; | 103 void dispatchDidFinishDocumentLoad() override; |
| 103 void dispatchDidFinishLoad() override; | 104 void dispatchDidFinishLoad() override; |
| 104 | 105 |
| 105 void dispatchDidChangeThemeColor() override; | 106 void dispatchDidChangeThemeColor() override; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 239 |
| 239 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 240 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
| 240 LocalFrameClient, | 241 LocalFrameClient, |
| 241 client, | 242 client, |
| 242 client->isLocalFrameClientImpl(), | 243 client->isLocalFrameClientImpl(), |
| 243 client.isLocalFrameClientImpl()); | 244 client.isLocalFrameClientImpl()); |
| 244 | 245 |
| 245 } // namespace blink | 246 } // namespace blink |
| 246 | 247 |
| 247 #endif | 248 #endif |
| OLD | NEW |