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() override; | 95 void dispatchDidStartProvisionalLoad(DocumentLoader*) override; |
96 void dispatchDidReceiveTitle(const String&) override; | 96 void dispatchDidReceiveTitle(const String&) override; |
97 void dispatchDidChangeIcons(IconType) override; | 97 void dispatchDidChangeIcons(IconType) override; |
98 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; | 98 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; |
99 void dispatchDidFailProvisionalLoad(const ResourceError&, | 99 void dispatchDidFailProvisionalLoad(const ResourceError&, |
100 HistoryCommitType) override; | 100 HistoryCommitType) override; |
101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; | 101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; |
102 void dispatchDidFinishDocumentLoad() override; | 102 void dispatchDidFinishDocumentLoad() override; |
103 void dispatchDidFinishLoad() override; | 103 void dispatchDidFinishLoad() override; |
104 | 104 |
105 void dispatchDidChangeThemeColor() override; | 105 void dispatchDidChangeThemeColor() override; |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 | 236 |
237 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, | 237 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, |
238 FrameLoaderClient, | 238 FrameLoaderClient, |
239 client, | 239 client, |
240 client->isFrameLoaderClientImpl(), | 240 client->isFrameLoaderClientImpl(), |
241 client.isFrameLoaderClientImpl()); | 241 client.isFrameLoaderClientImpl()); |
242 | 242 |
243 } // namespace blink | 243 } // namespace blink |
244 | 244 |
245 #endif | 245 #endif |
OLD | NEW |