Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: Source/core/loader/LinkLoader.cpp

Issue 1111173002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Incorporating Review Comments Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/loader/ImageLoader.cpp ('k') | Source/core/loader/PingLoader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/loader/ImageLoader.cpp ('k') | Source/core/loader/PingLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698