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

Side by Side Diff: third_party/WebKit/Source/core/fetch/XSLStyleSheetResource.cpp

Issue 2199713002: Refactoring: Make member variables in Resource private (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « third_party/WebKit/Source/core/fetch/Resource.cpp ('k') | no next file » | 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) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org)
4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org)
5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
6 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 Copyright (C) 2004, 2005, 2006, 2007, 2008 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 XSLStyleSheetResource::XSLStyleSheetResource(const ResourceRequest& resourceRequ est, const ResourceLoaderOptions& options, const String& charset) 70 XSLStyleSheetResource::XSLStyleSheetResource(const ResourceRequest& resourceRequ est, const ResourceLoaderOptions& options, const String& charset)
71 : StyleSheetResource(resourceRequest, XSLStyleSheet, options, "text/xsl", ch arset) 71 : StyleSheetResource(resourceRequest, XSLStyleSheet, options, "text/xsl", ch arset)
72 { 72 {
73 } 73 }
74 74
75 void XSLStyleSheetResource::didAddClient(ResourceClient* c) 75 void XSLStyleSheetResource::didAddClient(ResourceClient* c)
76 { 76 {
77 ASSERT(StyleSheetResourceClient::isExpectedType(c)); 77 ASSERT(StyleSheetResourceClient::isExpectedType(c));
78 Resource::didAddClient(c); 78 Resource::didAddClient(c);
79 if (!isLoading()) 79 if (!isLoading())
80 static_cast<StyleSheetResourceClient*>(c)->setXSLStyleSheet(m_resourceRe quest.url(), response().url(), m_sheet); 80 static_cast<StyleSheetResourceClient*>(c)->setXSLStyleSheet(resourceRequ est().url(), response().url(), m_sheet);
81 } 81 }
82 82
83 void XSLStyleSheetResource::checkNotify() 83 void XSLStyleSheetResource::checkNotify()
84 { 84 {
85 if (m_data.get()) 85 if (m_data.get())
86 m_sheet = decodedText(); 86 m_sheet = decodedText();
87 87
88 ResourceClientWalker<StyleSheetResourceClient> w(clients()); 88 ResourceClientWalker<StyleSheetResourceClient> w(clients());
89 while (StyleSheetResourceClient* c = w.next()) 89 while (StyleSheetResourceClient* c = w.next())
90 c->setXSLStyleSheet(m_resourceRequest.url(), response().url(), m_sheet); 90 c->setXSLStyleSheet(resourceRequest().url(), response().url(), m_sheet);
91 } 91 }
92 92
93 } // namespace blink 93 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/Resource.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698