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

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

Issue 14735003: Remove compile time flag ENABLE_PAGE_POPUP . This is part of an overall effort to remove unneeded c… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 7 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
« no previous file with comments | « Source/core/page/PagePopupController.idl ('k') | Source/core/testing/Internals.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) 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 Node* nextNodeByWalker(Node*, ExceptionCode&); 120 Node* nextNodeByWalker(Node*, ExceptionCode&);
121 Node* previousNodeByWalker(Node*, ExceptionCode&); 121 Node* previousNodeByWalker(Node*, ExceptionCode&);
122 122
123 String visiblePlaceholder(Element*); 123 String visiblePlaceholder(Element*);
124 #if ENABLE(INPUT_TYPE_COLOR) 124 #if ENABLE(INPUT_TYPE_COLOR)
125 void selectColorInColorChooser(Element*, const String& colorValue); 125 void selectColorInColorChooser(Element*, const String& colorValue);
126 #endif 126 #endif
127 Vector<String> formControlStateOfPreviousHistoryItem(ExceptionCode&); 127 Vector<String> formControlStateOfPreviousHistoryItem(ExceptionCode&);
128 void setFormControlStateOfPreviousHistoryItem(const Vector<String>&, Excepti onCode&); 128 void setFormControlStateOfPreviousHistoryItem(const Vector<String>&, Excepti onCode&);
129 void setEnableMockPagePopup(bool, ExceptionCode&); 129 void setEnableMockPagePopup(bool, ExceptionCode&);
130 #if ENABLE(PAGE_POPUP)
131 PassRefPtr<PagePopupController> pagePopupController(); 130 PassRefPtr<PagePopupController> pagePopupController();
132 #endif
133 131
134 PassRefPtr<ClientRect> absoluteCaretBounds(ExceptionCode&); 132 PassRefPtr<ClientRect> absoluteCaretBounds(ExceptionCode&);
135 133
136 PassRefPtr<ClientRect> boundingBox(Element*, ExceptionCode&); 134 PassRefPtr<ClientRect> boundingBox(Element*, ExceptionCode&);
137 135
138 PassRefPtr<ClientRectList> inspectorHighlightRects(Document*, ExceptionCode& ); 136 PassRefPtr<ClientRectList> inspectorHighlightRects(Document*, ExceptionCode& );
139 137
140 unsigned markerCountForNode(Node*, const String&, ExceptionCode&); 138 unsigned markerCountForNode(Node*, const String&, ExceptionCode&);
141 PassRefPtr<Range> markerRangeForNode(Node*, const String& markerType, unsign ed index, ExceptionCode&); 139 PassRefPtr<Range> markerRangeForNode(Node*, const String& markerType, unsign ed index, ExceptionCode&);
142 String markerDescriptionForNode(Node*, const String& markerType, unsigned in dex, ExceptionCode&); 140 String markerDescriptionForNode(Node*, const String& markerType, unsigned in dex, ExceptionCode&);
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 297
300 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&); 298 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&);
301 RefPtr<DOMWindow> m_frontendWindow; 299 RefPtr<DOMWindow> m_frontendWindow;
302 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 300 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
303 RefPtr<InternalRuntimeFlags> m_runtimeFlags; 301 RefPtr<InternalRuntimeFlags> m_runtimeFlags;
304 }; 302 };
305 303
306 } // namespace WebCore 304 } // namespace WebCore
307 305
308 #endif 306 #endif
OLDNEW
« no previous file with comments | « Source/core/page/PagePopupController.idl ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698