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

Side by Side Diff: Source/core/html/HTMLHtmlElement.cpp

Issue 150103007: Use fastGetAttribute in more places (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add more instances Created 6 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Simon Hausmann (hausmann@kde.org) 4 * (C) 2000 Simon Hausmann (hausmann@kde.org)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2006, 2010 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2006, 2010 Apple Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 if (!document().parser() || !document().parser()->documentWasLoadedAsPartOfN avigation()) 58 if (!document().parser() || !document().parser()->documentWasLoadedAsPartOfN avigation())
59 return; 59 return;
60 60
61 if (!document().frame()) 61 if (!document().frame())
62 return; 62 return;
63 63
64 DocumentLoader* documentLoader = document().frame()->loader().documentLoader (); 64 DocumentLoader* documentLoader = document().frame()->loader().documentLoader ();
65 if (!documentLoader) 65 if (!documentLoader)
66 return; 66 return;
67 67
68 const AtomicString& manifest = getAttribute(manifestAttr); 68 const AtomicString& manifest = fastGetAttribute(manifestAttr);
69 if (manifest.isEmpty()) 69 if (manifest.isEmpty())
70 documentLoader->applicationCacheHost()->selectCacheWithoutManifest(); 70 documentLoader->applicationCacheHost()->selectCacheWithoutManifest();
71 else 71 else
72 documentLoader->applicationCacheHost()->selectCacheWithManifest(document ().completeURL(manifest)); 72 documentLoader->applicationCacheHost()->selectCacheWithManifest(document ().completeURL(manifest));
73 } 73 }
74 74
75 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698