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

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

Issue 316053007: Navigation transitions: Added notifyTransitionsShown and setupTransitionsView to WebLocalFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review fix Created 6 years, 4 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/web/tests/data/transition_exit.html ('k') | public/web/WebLocalFrame.h » ('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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 BLINK_EXPORT void images(WebVector<WebElement>&); 107 BLINK_EXPORT void images(WebVector<WebElement>&);
108 BLINK_EXPORT WebURL completeURL(const WebString&) const; 108 BLINK_EXPORT WebURL completeURL(const WebString&) const;
109 BLINK_EXPORT WebElement getElementById(const WebString&) const; 109 BLINK_EXPORT WebElement getElementById(const WebString&) const;
110 BLINK_EXPORT WebElement focusedElement() const; 110 BLINK_EXPORT WebElement focusedElement() const;
111 BLINK_EXPORT WebDocumentType doctype() const; 111 BLINK_EXPORT WebDocumentType doctype() const;
112 BLINK_EXPORT void cancelFullScreen(); 112 BLINK_EXPORT void cancelFullScreen();
113 BLINK_EXPORT WebElement fullScreenElement() const; 113 BLINK_EXPORT WebElement fullScreenElement() const;
114 BLINK_EXPORT WebDOMEvent createEvent(const WebString& eventType); 114 BLINK_EXPORT WebDOMEvent createEvent(const WebString& eventType);
115 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; 115 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const;
116 BLINK_EXPORT WebElement createElement(const WebString& tagName); 116 BLINK_EXPORT WebElement createElement(const WebString& tagName);
117 BLINK_EXPORT void setIsTransitionDocument();
118 BLINK_EXPORT void beginExitTransition(const WebString& cssSelector);
117 119
118 // Accessibility support. These methods should only be called on the 120 // Accessibility support. These methods should only be called on the
119 // top-level document, because one accessibility cache spans all of 121 // top-level document, because one accessibility cache spans all of
120 // the documents on the page. 122 // the documents on the page.
121 123
122 // Gets the accessibility object for this document. 124 // Gets the accessibility object for this document.
123 BLINK_EXPORT WebAXObject accessibilityObject() const; 125 BLINK_EXPORT WebAXObject accessibilityObject() const;
124 126
125 // Gets the accessibility object for an object on this page by ID. 127 // Gets the accessibility object for an object on this page by ID.
126 BLINK_EXPORT WebAXObject accessibilityObjectFromID(int axID) const; 128 BLINK_EXPORT WebAXObject accessibilityObjectFromID(int axID) const;
(...skipping 12 matching lines...) Expand all
139 #if BLINK_IMPLEMENTATION 141 #if BLINK_IMPLEMENTATION
140 WebDocument(const PassRefPtrWillBeRawPtr<blink::Document>&); 142 WebDocument(const PassRefPtrWillBeRawPtr<blink::Document>&);
141 WebDocument& operator=(const PassRefPtrWillBeRawPtr<blink::Document>&); 143 WebDocument& operator=(const PassRefPtrWillBeRawPtr<blink::Document>&);
142 operator PassRefPtrWillBeRawPtr<blink::Document>() const; 144 operator PassRefPtrWillBeRawPtr<blink::Document>() const;
143 #endif 145 #endif
144 }; 146 };
145 147
146 } // namespace blink 148 } // namespace blink
147 149
148 #endif 150 #endif
OLDNEW
« no previous file with comments | « Source/web/tests/data/transition_exit.html ('k') | public/web/WebLocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698