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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
799 return nullptr; | 799 return nullptr; |
800 return adoptPtr(m_webFrame->client()->createApplicationCacheHost(m_webFrame, client)); | 800 return adoptPtr(m_webFrame->client()->createApplicationCacheHost(m_webFrame, client)); |
801 } | 801 } |
802 | 802 |
803 void FrameLoaderClientImpl::didStopAllLoaders() | 803 void FrameLoaderClientImpl::didStopAllLoaders() |
804 { | 804 { |
805 if (m_webFrame->client()) | 805 if (m_webFrame->client()) |
806 m_webFrame->client()->didAbortLoading(m_webFrame); | 806 m_webFrame->client()->didAbortLoading(m_webFrame); |
807 } | 807 } |
808 | 808 |
809 void FrameLoaderClientImpl::dispatchDidChangeManifest() | |
810 { | |
811 if (m_webFrame->client()) | |
812 m_webFrame->client()->didChangeManifest(m_webFrame); | |
abarth-chromium
2014/05/01 17:51:16
Why not pass the manifest URL along in this notifi
mlamouri (slow - plz ping)
2014/05/01 18:00:09
I tried to stay consistent with how icons update a
| |
813 } | |
814 | |
809 } // namespace blink | 815 } // namespace blink |
OLD | NEW |