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

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

Issue 760183003: Enable/Unprefix Animations & Transitions, add basic tests (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: patch for landing Created 6 years 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/platform/RuntimeEnabledFeatures.in ('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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 BLINK_EXPORT WebElement documentElement() const; 82 BLINK_EXPORT WebElement documentElement() const;
83 BLINK_EXPORT WebString title() const; 83 BLINK_EXPORT WebString title() const;
84 BLINK_EXPORT WebURL completeURL(const WebString&) const; 84 BLINK_EXPORT WebURL completeURL(const WebString&) const;
85 BLINK_EXPORT WebElement getElementById(const WebString&) const; 85 BLINK_EXPORT WebElement getElementById(const WebString&) const;
86 BLINK_EXPORT WebElement focusedElement() const; 86 BLINK_EXPORT WebElement focusedElement() const;
87 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; 87 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const;
88 BLINK_EXPORT WebElement createElement(const WebString& tagName); 88 BLINK_EXPORT WebElement createElement(const WebString& tagName);
89 89
90 BLINK_EXPORT v8::Handle<v8::Value> registerEmbedderCustomElement(const WebSt ring& name, v8::Handle<v8::Value> options, WebExceptionCode&); 90 BLINK_EXPORT v8::Handle<v8::Value> registerEmbedderCustomElement(const WebSt ring& name, v8::Handle<v8::Value> options, WebExceptionCode&);
91 BLINK_EXPORT void pauseAnimationsForTesting(double pauseTime) const;
92
91 93
92 #if BLINK_IMPLEMENTATION 94 #if BLINK_IMPLEMENTATION
93 WebDocument(const PassRefPtr<Document>&); 95 WebDocument(const PassRefPtr<Document>&);
94 WebDocument& operator=(const PassRefPtr<Document>&); 96 WebDocument& operator=(const PassRefPtr<Document>&);
95 operator PassRefPtr<Document>() const; 97 operator PassRefPtr<Document>() const;
96 #endif 98 #endif
97 }; 99 };
98 100
99 } // namespace blink 101 } // namespace blink
100 102
101 #endif // SKY_ENGINE_PUBLIC_WEB_WEBDOCUMENT_H_ 103 #endif // SKY_ENGINE_PUBLIC_WEB_WEBDOCUMENT_H_
OLDNEW
« no previous file with comments | « sky/engine/platform/RuntimeEnabledFeatures.in ('k') | sky/engine/web/WebDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698