| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 return toWebNavigationType(DocumentLoader::getNavigationType()); | 104 return toWebNavigationType(DocumentLoader::getNavigationType()); |
| 105 } | 105 } |
| 106 | 106 |
| 107 WebDataSource::ExtraData* WebDataSourceImpl::getExtraData() const { | 107 WebDataSource::ExtraData* WebDataSourceImpl::getExtraData() const { |
| 108 return m_extraData.get(); | 108 return m_extraData.get(); |
| 109 } | 109 } |
| 110 | 110 |
| 111 void WebDataSourceImpl::setExtraData(ExtraData* extraData) { | 111 void WebDataSourceImpl::setExtraData(ExtraData* extraData) { |
| 112 // extraData can't be a std::unique_ptr because setExtraData is a WebKit API | 112 // extraData can't be a std::unique_ptr because setExtraData is a WebKit API |
| 113 // function. | 113 // function. |
| 114 m_extraData = wrapUnique(extraData); | 114 m_extraData = WTF::wrapUnique(extraData); |
| 115 } | 115 } |
| 116 | 116 |
| 117 void WebDataSourceImpl::setNavigationStartTime(double navigationStart) { | 117 void WebDataSourceImpl::setNavigationStartTime(double navigationStart) { |
| 118 timing().setNavigationStart(navigationStart); | 118 timing().setNavigationStart(navigationStart); |
| 119 } | 119 } |
| 120 | 120 |
| 121 WebNavigationType WebDataSourceImpl::toWebNavigationType(NavigationType type) { | 121 WebNavigationType WebDataSourceImpl::toWebNavigationType(NavigationType type) { |
| 122 switch (type) { | 122 switch (type) { |
| 123 case NavigationTypeLinkClicked: | 123 case NavigationTypeLinkClicked: |
| 124 return WebNavigationTypeLinkClicked; | 124 return WebNavigationTypeLinkClicked; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 void WebDataSourceImpl::setSubresourceFilter( | 158 void WebDataSourceImpl::setSubresourceFilter( |
| 159 WebDocumentSubresourceFilter* subresourceFilter) { | 159 WebDocumentSubresourceFilter* subresourceFilter) { |
| 160 DocumentLoader::setSubresourceFilter(WTF::wrapUnique(subresourceFilter)); | 160 DocumentLoader::setSubresourceFilter(WTF::wrapUnique(subresourceFilter)); |
| 161 } | 161 } |
| 162 | 162 |
| 163 DEFINE_TRACE(WebDataSourceImpl) { | 163 DEFINE_TRACE(WebDataSourceImpl) { |
| 164 DocumentLoader::trace(visitor); | 164 DocumentLoader::trace(visitor); |
| 165 } | 165 } |
| 166 | 166 |
| 167 } // namespace blink | 167 } // namespace blink |
| OLD | NEW |