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

Side by Side Diff: third_party/WebKit/Source/core/xml/XSLImportRule.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 * This file is part of the XSL implementation. 2 * This file is part of the XSL implementation.
3 * 3 *
4 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = s tyleSheet; } 47 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = s tyleSheet; }
48 48
49 bool isLoading(); 49 bool isLoading();
50 void loadSheet(); 50 void loadSheet();
51 51
52 private: 52 private:
53 XSLImportRule(XSLStyleSheet* parentSheet, const String& href); 53 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
54 54
55 void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet); 55 void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
56 56
57 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet; 57 Member<XSLStyleSheet> m_parentStyleSheet;
58 String m_strHref; 58 String m_strHref;
59 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet; 59 Member<XSLStyleSheet> m_styleSheet;
60 bool m_loading; 60 bool m_loading;
61 }; 61 };
62 62
63 } // namespace blink 63 } // namespace blink
64 64
65 #endif // XSLImportRule_h 65 #endif // XSLImportRule_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathStep.cpp ('k') | third_party/WebKit/Source/core/xml/XSLImportRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698