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

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

Issue 214563004: Oilpan: move WebKitPoint to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/core/frame/DOMPoint.h ('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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 // DOM Level 2 Style Interface 213 // DOM Level 2 Style Interface
214 214
215 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const; 215 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pseudoElt) const;
216 216
217 // WebKit extensions 217 // WebKit extensions
218 218
219 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S tring& pseudoElt) const; 219 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S tring& pseudoElt) const;
220 double devicePixelRatio() const; 220 double devicePixelRatio() const;
221 221
222 PassRefPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPo int*) const; 222 PassRefPtrWillBeRawPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPoint*) const;
223 PassRefPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPo int*) const; 223 PassRefPtrWillBeRawPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPoint*) const;
224 224
225 Console& console() const; 225 Console& console() const;
226 PageConsole* pageConsole() const; 226 PageConsole* pageConsole() const;
227 227
228 void printErrorMessage(const String&); 228 void printErrorMessage(const String&);
229 String crossDomainAccessErrorMessage(DOMWindow* callingWindow); 229 String crossDomainAccessErrorMessage(DOMWindow* callingWindow);
230 String sanitizedCrossDomainAccessErrorMessage(DOMWindow* callingWindow); 230 String sanitizedCrossDomainAccessErrorMessage(DOMWindow* callingWindow);
231 231
232 void postMessage(PassRefPtr<SerializedScriptValue> message, const Messag ePortArray*, const String& targetOrigin, DOMWindow* source, ExceptionState&); 232 void postMessage(PassRefPtr<SerializedScriptValue> message, const Messag ePortArray*, const String& targetOrigin, DOMWindow* source, ExceptionState&);
233 void postMessageTimerFired(PassOwnPtr<PostMessageTimer>); 233 void postMessageTimerFired(PassOwnPtr<PostMessageTimer>);
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 } 383 }
384 384
385 inline String DOMWindow::defaultStatus() const 385 inline String DOMWindow::defaultStatus() const
386 { 386 {
387 return m_defaultStatus; 387 return m_defaultStatus;
388 } 388 }
389 389
390 } // namespace WebCore 390 } // namespace WebCore
391 391
392 #endif // DOMWindow_h 392 #endif // DOMWindow_h
OLDNEW
« no previous file with comments | « Source/core/frame/DOMPoint.h ('k') | Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698