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

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

Issue 1522463003: Refactor resource load and resource selection algorithms as per spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move preloadTypeToString to anonymous namespace Created 4 years, 9 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti onState& = ASSERT_NO_EXCEPTION) const; 259 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti onState& = ASSERT_NO_EXCEPTION) const;
260 260
261 void setPageScaleFactor(float scaleFactor, ExceptionState&); 261 void setPageScaleFactor(float scaleFactor, ExceptionState&);
262 void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor, Ex ceptionState&); 262 void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor, Ex ceptionState&);
263 263
264 bool magnifyScaleAroundAnchor(float factor, float x, float y); 264 bool magnifyScaleAroundAnchor(float factor, float x, float y);
265 265
266 void setIsCursorVisible(Document*, bool, ExceptionState&); 266 void setIsCursorVisible(Document*, bool, ExceptionState&);
267 267
268 double effectiveMediaVolume(HTMLMediaElement*); 268 double effectiveMediaVolume(HTMLMediaElement*);
269 String effectivePreload(HTMLMediaElement*);
269 270
270 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); 271 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool);
271 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); 272 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool);
272 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool); 273 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool);
273 274
274 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) ; 275 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) ;
275 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme, const Vector<String>& policyAreas); 276 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme, const Vector<String>& policyAreas);
276 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme); 277 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme);
277 278
278 TypeConversions* typeConversions() const; 279 TypeConversions* typeConversions() const;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 411
411 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
412 Member<InternalRuntimeFlags> m_runtimeFlags; 413 Member<InternalRuntimeFlags> m_runtimeFlags;
413 414
414 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 415 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
415 }; 416 };
416 417
417 } // namespace blink 418 } // namespace blink
418 419
419 #endif // Internals_h 420 #endif // Internals_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('k') | third_party/WebKit/Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698