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

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

Issue 20123003: [oilpan] The Node hierarchy should have correct accept method chains (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
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, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv ed.
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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 return view ? adjustForZoom(view->contentsWidth(), document) : 0; 322 return view ? adjustForZoom(view->contentsWidth(), document) : 0;
323 } 323 }
324 324
325 void HTMLBodyElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const 325 void HTMLBodyElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
326 { 326 {
327 HTMLElement::addSubresourceAttributeURLs(urls); 327 HTMLElement::addSubresourceAttributeURLs(urls);
328 328
329 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr) )); 329 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr) ));
330 } 330 }
331 331
332 void HTMLBodyElement::acceptHeapVisitor(Visitor* visitor) const
333 {
334 HTMLElement::acceptHeapVisitor(visitor);
335 }
336
332 } // namespace WebCore 337 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698