| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "platform/RuntimeEnabledFeatures.h" | 45 #include "platform/RuntimeEnabledFeatures.h" |
| 46 #include "platform/network/NetworkHints.h" | 46 #include "platform/network/NetworkHints.h" |
| 47 #include "public/platform/WebPrerender.h" | 47 #include "public/platform/WebPrerender.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 static unsigned prerenderRelTypesFromRelAttribute(const LinkRelAttribute& relAtt
ribute) | 51 static unsigned prerenderRelTypesFromRelAttribute(const LinkRelAttribute& relAtt
ribute) |
| 52 { | 52 { |
| 53 unsigned result = 0; | 53 unsigned result = 0; |
| 54 if (relAttribute.isLinkPrerender()) | 54 if (relAttribute.isLinkPrerender()) |
| 55 result |= blink::PrerenderRelTypePrerender; | 55 result |= PrerenderRelTypePrerender; |
| 56 if (relAttribute.isLinkNext()) | 56 if (relAttribute.isLinkNext()) |
| 57 result |= blink::PrerenderRelTypeNext; | 57 result |= PrerenderRelTypeNext; |
| 58 | 58 |
| 59 return result; | 59 return result; |
| 60 } | 60 } |
| 61 | 61 |
| 62 LinkLoader::LinkLoader(LinkLoaderClient* client) | 62 LinkLoader::LinkLoader(LinkLoaderClient* client) |
| 63 : m_client(client) | 63 : m_client(client) |
| 64 , m_linkLoadTimer(this, &LinkLoader::linkLoadTimerFired) | 64 , m_linkLoadTimer(this, &LinkLoader::linkLoadTimerFired) |
| 65 , m_linkLoadingErrorTimer(this, &LinkLoader::linkLoadingErrorTimerFired) | 65 , m_linkLoadingErrorTimer(this, &LinkLoader::linkLoadingErrorTimerFired) |
| 66 { | 66 { |
| 67 } | 67 } |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 m_prerender.clear(); | 236 m_prerender.clear(); |
| 237 } | 237 } |
| 238 } | 238 } |
| 239 | 239 |
| 240 DEFINE_TRACE(LinkLoader) | 240 DEFINE_TRACE(LinkLoader) |
| 241 { | 241 { |
| 242 visitor->trace(m_prerender); | 242 visitor->trace(m_prerender); |
| 243 } | 243 } |
| 244 | 244 |
| 245 } | 245 } |
| OLD | NEW |