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

Side by Side Diff: Source/core/testing/Internals.h

Issue 530653002: Use page popup pixel readback for calendar-picker-appearance.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
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 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 String visiblePlaceholder(Element*); 131 String visiblePlaceholder(Element*);
132 void selectColorInColorChooser(Element*, const String& colorValue); 132 void selectColorInColorChooser(Element*, const String& colorValue);
133 void endColorChooser(Element*); 133 void endColorChooser(Element*);
134 bool hasAutofocusRequest(Document*); 134 bool hasAutofocusRequest(Document*);
135 bool hasAutofocusRequest(); 135 bool hasAutofocusRequest();
136 Vector<String> formControlStateOfHistoryItem(ExceptionState&); 136 Vector<String> formControlStateOfHistoryItem(ExceptionState&);
137 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState& ); 137 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState& );
138 void setEnableMockPagePopup(bool, ExceptionState&); 138 void setEnableMockPagePopup(bool, ExceptionState&);
139 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); 139 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController();
140 LocalDOMWindow* pagePopupWindow() const;
140 141
141 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&); 142 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&);
142 143
143 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*); 144 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*);
144 145
145 unsigned markerCountForNode(Node*, const String&, ExceptionState&); 146 unsigned markerCountForNode(Node*, const String&, ExceptionState&);
146 unsigned activeMarkerCountForNode(Node*); 147 unsigned activeMarkerCountForNode(Node*);
147 PassRefPtrWillBeRawPtr<Range> markerRangeForNode(Node*, const String& marker Type, unsigned index, ExceptionState&); 148 PassRefPtrWillBeRawPtr<Range> markerRangeForNode(Node*, const String& marker Type, unsigned index, ExceptionState&);
148 String markerDescriptionForNode(Node*, const String& markerType, unsigned in dex, ExceptionState&); 149 String markerDescriptionForNode(Node*, const String& markerType, unsigned in dex, ExceptionState&);
149 void addTextMatchMarker(const Range*, bool isActive); 150 void addTextMatchMarker(const Range*, bool isActive);
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); 333 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&);
333 334
334 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 335 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
335 Member<InternalRuntimeFlags> m_runtimeFlags; 336 Member<InternalRuntimeFlags> m_runtimeFlags;
336 Member<InternalProfilers> m_profilers; 337 Member<InternalProfilers> m_profilers;
337 }; 338 };
338 339
339 } // namespace blink 340 } // namespace blink
340 341
341 #endif // Internals_h 342 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698