| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 2 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 3 * Copyright (C) 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Lesser General Public | 6 * modify it under the terms of the GNU Lesser General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 return DOMPlugin::create(data, frame(), i); | 62 return DOMPlugin::create(data, frame(), i); |
| 63 } | 63 } |
| 64 return nullptr; | 64 return nullptr; |
| 65 } | 65 } |
| 66 | 66 |
| 67 void DOMPluginArray::refresh(bool reload) { | 67 void DOMPluginArray::refresh(bool reload) { |
| 68 if (!frame()) | 68 if (!frame()) |
| 69 return; | 69 return; |
| 70 Page::refreshPlugins(); | 70 Page::refreshPlugins(); |
| 71 if (reload) { | 71 if (reload) { |
| 72 frame()->reload(RuntimeEnabledFeatures::fasterLocationReloadEnabled() | 72 frame()->reload(FrameLoadTypeReloadMainResource, |
| 73 ? FrameLoadTypeReloadMainResource | |
| 74 : FrameLoadTypeReload, | |
| 75 ClientRedirectPolicy::ClientRedirect); | 73 ClientRedirectPolicy::ClientRedirect); |
| 76 } | 74 } |
| 77 } | 75 } |
| 78 | 76 |
| 79 PluginData* DOMPluginArray::pluginData() const { | 77 PluginData* DOMPluginArray::pluginData() const { |
| 80 if (!frame()) | 78 if (!frame()) |
| 81 return nullptr; | 79 return nullptr; |
| 82 return frame()->pluginData(); | 80 return frame()->pluginData(); |
| 83 } | 81 } |
| 84 | 82 |
| 85 } // namespace blink | 83 } // namespace blink |
| OLD | NEW |