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

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

Issue 108313015: Make calls to AtomicString(const String&) explicit in html/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Take feedback into consideration Created 6 years, 11 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
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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 172
173 PassRefPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(long x, long y , long width, long height, Document*, ExceptionState&); 173 PassRefPtr<DOMPoint> touchPositionAdjustedToBestClickableNode(long x, long y , long width, long height, Document*, ExceptionState&);
174 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document*, ExceptionState&); 174 Node* touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document*, ExceptionState&);
175 PassRefPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document*, ExceptionState&); 175 PassRefPtr<DOMPoint> touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document*, ExceptionState&);
176 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon g height, Document*, ExceptionState&); 176 Node* touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, lon g height, Document*, ExceptionState&);
177 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi dth, long height, Document*, ExceptionState&); 177 PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long wi dth, long height, Document*, ExceptionState&);
178 178
179 int lastSpellCheckRequestSequence(Document*, ExceptionState&); 179 int lastSpellCheckRequestSequence(Document*, ExceptionState&);
180 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); 180 int lastSpellCheckProcessedSequence(Document*, ExceptionState&);
181 181
182 Vector<String> userPreferredLanguages() const; 182 Vector<AtomicString> userPreferredLanguages() const;
183 void setUserPreferredLanguages(const Vector<String>&); 183 void setUserPreferredLanguages(const Vector<String>&);
184 184
185 unsigned wheelEventHandlerCount(Document*, ExceptionState&); 185 unsigned wheelEventHandlerCount(Document*, ExceptionState&);
186 unsigned touchEventHandlerCount(Document*, ExceptionState&); 186 unsigned touchEventHandlerCount(Document*, ExceptionState&);
187 PassRefPtr<LayerRectList> touchEventTargetLayerRects(Document*, ExceptionSta te&); 187 PassRefPtr<LayerRectList> touchEventTargetLayerRects(Document*, ExceptionSta te&);
188 188
189 // This is used to test rect based hit testing like what's done on touch scr eens. 189 // This is used to test rect based hit testing like what's done on touch scr eens.
190 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd ing, unsigned rightPadding, 190 PassRefPtr<NodeList> nodesFromRect(Document*, int x, int y, unsigned topPadd ing, unsigned rightPadding,
191 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState&) const; 191 unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent, ExceptionState&) const;
192 192
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 RefPtr<DOMWindow> m_frontendWindow; 316 RefPtr<DOMWindow> m_frontendWindow;
317 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 317 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
318 RefPtr<InternalRuntimeFlags> m_runtimeFlags; 318 RefPtr<InternalRuntimeFlags> m_runtimeFlags;
319 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; 319 RefPtr<ScrollingCoordinator> m_scrollingCoordinator;
320 RefPtr<InternalProfilers> m_profilers; 320 RefPtr<InternalProfilers> m_profilers;
321 }; 321 };
322 322
323 } // namespace WebCore 323 } // namespace WebCore
324 324
325 #endif 325 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698