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

Side by Side Diff: sky/engine/public/web/WebDocument.h

Issue 1020053002: Remove pauseAnimationsForTesting (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 | « sky/engine/core/page/PageAnimator.cpp ('k') | sky/engine/web/WebDocument.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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // Returns the frame the document belongs to or 0 if the document is framele ss. 78 // Returns the frame the document belongs to or 0 if the document is framele ss.
79 BLINK_EXPORT WebLocalFrame* frame() const; 79 BLINK_EXPORT WebLocalFrame* frame() const;
80 80
81 BLINK_EXPORT WebString title() const; 81 BLINK_EXPORT WebString title() const;
82 BLINK_EXPORT WebURL completeURL(const WebString&) const; 82 BLINK_EXPORT WebURL completeURL(const WebString&) const;
83 BLINK_EXPORT WebElement getElementById(const WebString&) const; 83 BLINK_EXPORT WebElement getElementById(const WebString&) const;
84 BLINK_EXPORT WebElement focusedElement() const; 84 BLINK_EXPORT WebElement focusedElement() const;
85 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; 85 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const;
86 BLINK_EXPORT WebElement createElement(const WebString& tagName); 86 BLINK_EXPORT WebElement createElement(const WebString& tagName);
87 87
88 BLINK_EXPORT void pauseAnimationsForTesting(double pauseTime) const;
89
90
91 #if BLINK_IMPLEMENTATION 88 #if BLINK_IMPLEMENTATION
92 WebDocument(const PassRefPtr<Document>&); 89 WebDocument(const PassRefPtr<Document>&);
93 WebDocument& operator=(const PassRefPtr<Document>&); 90 WebDocument& operator=(const PassRefPtr<Document>&);
94 operator PassRefPtr<Document>() const; 91 operator PassRefPtr<Document>() const;
95 #endif 92 #endif
96 }; 93 };
97 94
98 } // namespace blink 95 } // namespace blink
99 96
100 #endif // SKY_ENGINE_PUBLIC_WEB_WEBDOCUMENT_H_ 97 #endif // SKY_ENGINE_PUBLIC_WEB_WEBDOCUMENT_H_
OLDNEW
« no previous file with comments | « sky/engine/core/page/PageAnimator.cpp ('k') | sky/engine/web/WebDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698