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

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

Issue 1140153006: Remove Navigation Transitions from Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed layout tests. Created 5 years, 7 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 | « public/blink_resources.grd ('k') | public/web/WebFrameClient.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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Shorthand of frame()->scrollOffset(). 117 // Shorthand of frame()->scrollOffset().
118 BLINK_EXPORT WebSize scrollOffset() const; 118 BLINK_EXPORT WebSize scrollOffset() const;
119 // Shorthand of frame()->minimumScrollOffset(). 119 // Shorthand of frame()->minimumScrollOffset().
120 BLINK_EXPORT WebSize minimumScrollOffset() const; 120 BLINK_EXPORT WebSize minimumScrollOffset() const;
121 // Shorthand of frame()->maximumScrollOffset(). 121 // Shorthand of frame()->maximumScrollOffset().
122 BLINK_EXPORT WebSize maximumScrollOffset() const; 122 BLINK_EXPORT WebSize maximumScrollOffset() const;
123 BLINK_EXPORT void setIsTransitionDocument(bool);
124 BLINK_EXPORT void beginExitTransition(const WebString& cssSelector, bool exi tToNativeApp);
125 BLINK_EXPORT void revertExitTransition();
126 BLINK_EXPORT void hideTransitionElements(const WebString& cssSelector);
127 BLINK_EXPORT void showTransitionElements(const WebString& cssSelector);
128 123
129 // Accessibility support. These methods should only be called on the 124 // Accessibility support. These methods should only be called on the
130 // top-level document, because one accessibility cache spans all of 125 // top-level document, because one accessibility cache spans all of
131 // the documents on the page. 126 // the documents on the page.
132 127
133 // Gets the accessibility object for this document. 128 // Gets the accessibility object for this document.
134 BLINK_EXPORT WebAXObject accessibilityObject() const; 129 BLINK_EXPORT WebAXObject accessibilityObject() const;
135 130
136 // Gets the accessibility object for an object on this page by ID. 131 // Gets the accessibility object for an object on this page by ID.
137 BLINK_EXPORT WebAXObject accessibilityObjectFromID(int axID) const; 132 BLINK_EXPORT WebAXObject accessibilityObjectFromID(int axID) const;
(...skipping 16 matching lines...) Expand all
154 #if BLINK_IMPLEMENTATION 149 #if BLINK_IMPLEMENTATION
155 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); 150 WebDocument(const PassRefPtrWillBeRawPtr<Document>&);
156 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); 151 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&);
157 operator PassRefPtrWillBeRawPtr<Document>() const; 152 operator PassRefPtrWillBeRawPtr<Document>() const;
158 #endif 153 #endif
159 }; 154 };
160 155
161 } // namespace blink 156 } // namespace blink
162 157
163 #endif 158 #endif
OLDNEW
« no previous file with comments | « public/blink_resources.grd ('k') | public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698