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

Side by Side Diff: Source/core/frame/DOMWindow.h

Issue 192473003: Move CSSRuleList to the garbage collected heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ager feedback Created 6 years, 9 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
« no previous file with comments | « Source/core/dom/TreeScopeStyleSheetCollection.cpp ('k') | Source/core/frame/DOMWindow.cpp » ('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) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 // CSSOM View Module 198 // CSSOM View Module
199 199
200 StyleMedia& styleMedia() const; 200 StyleMedia& styleMedia() const;
201 201
202 // DOM Level 2 Style Interface 202 // DOM Level 2 Style Interface
203 203
204 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const; 204 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const;
205 205
206 // WebKit extensions 206 // WebKit extensions
207 207
208 PassRefPtr<CSSRuleList> getMatchedCSSRules(Element*, const String& pseud oElt) const; 208 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S tring& pseudoElt) const;
209 double devicePixelRatio() const; 209 double devicePixelRatio() const;
210 210
211 PassRefPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPo int*) const; 211 PassRefPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPo int*) const;
212 PassRefPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPo int*) const; 212 PassRefPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPo int*) const;
213 213
214 Console& console() const; 214 Console& console() const;
215 PageConsole* pageConsole() const; 215 PageConsole* pageConsole() const;
216 216
217 void printErrorMessage(const String&); 217 void printErrorMessage(const String&);
218 String crossDomainAccessErrorMessage(DOMWindow* callingWindow); 218 String crossDomainAccessErrorMessage(DOMWindow* callingWindow);
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 } 370 }
371 371
372 inline String DOMWindow::defaultStatus() const 372 inline String DOMWindow::defaultStatus() const
373 { 373 {
374 return m_defaultStatus; 374 return m_defaultStatus;
375 } 375 }
376 376
377 } // namespace WebCore 377 } // namespace WebCore
378 378
379 #endif // DOMWindow_h 379 #endif // DOMWindow_h
OLDNEW
« no previous file with comments | « Source/core/dom/TreeScopeStyleSheetCollection.cpp ('k') | Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698