blink 64 Source/bindings/v8/CallbackPromiseAdapter.h class CallbackPromiseAdapter FINAL : public blink::WebCallbacks<typename S::WebType, typename T::WebType> { blink 131 Source/bindings/v8/ScriptController.cpp blink::Platform::current()->histogramCustomCounts("WebCore.ScriptController.clearForClose", (currentTime() - start) * 1000, 0, 10000, 50); blink 435 Source/bindings/v8/ScriptController.cpp blink::Platform::current()->histogramCustomCounts("WebCore.ScriptController.clearWindowShell", (currentTime() - start) * 1000, 0, 10000, 50); blink 484 Source/bindings/v8/SerializedScriptValue.cpp bool writeCryptoKey(const blink::WebCryptoKey& key) blink 489 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyAlgorithmParamsTypeAes: blink 492 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyAlgorithmParamsTypeHmac: blink 495 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyAlgorithmParamsTypeRsa: blink 496 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyAlgorithmParamsTypeRsaHashed: blink 499 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyAlgorithmParamsTypeNone: blink 506 Source/bindings/v8/SerializedScriptValue.cpp blink::WebVector<uint8_t> keyData; blink 507 Source/bindings/v8/SerializedScriptValue.cpp if (!blink::Platform::current()->crypto()->serializeKeyForClone(key, keyData)) blink 686 Source/bindings/v8/SerializedScriptValue.cpp void doWriteHmacKey(const blink::WebCryptoKey& key) blink 688 Source/bindings/v8/SerializedScriptValue.cpp ASSERT(key.algorithm().paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeHmac); blink 696 Source/bindings/v8/SerializedScriptValue.cpp void doWriteAesKey(const blink::WebCryptoKey& key) blink 698 Source/bindings/v8/SerializedScriptValue.cpp ASSERT(key.algorithm().paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeAes); blink 708 Source/bindings/v8/SerializedScriptValue.cpp void doWriteRsaKey(const blink::WebCryptoKey& key) blink 718 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyTypePublic: blink 721 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyTypePrivate: blink 724 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoKeyTypeSecret: blink 728 Source/bindings/v8/SerializedScriptValue.cpp const blink::WebCryptoRsaKeyAlgorithmParams* params = key.algorithm().rsaParams(); blink 737 Source/bindings/v8/SerializedScriptValue.cpp void doWriteAlgorithmId(blink::WebCryptoAlgorithmId id) blink 740 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdAesCbc: blink 742 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdHmac: blink 744 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5: blink 746 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5: blink 748 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdSha1: blink 750 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdSha256: blink 752 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdSha384: blink 754 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdSha512: blink 756 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdAesGcm: blink 758 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdRsaOaep: blink 760 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdAesCtr: blink 762 Source/bindings/v8/SerializedScriptValue.cpp case blink::WebCryptoAlgorithmIdAesKw: blink 768 Source/bindings/v8/SerializedScriptValue.cpp void doWriteKeyUsages(const blink::WebCryptoKeyUsageMask usages, bool extractable) blink 771 Source/bindings/v8/SerializedScriptValue.cpp COMPILE_ASSERT(blink::EndOfWebCryptoKeyUsage == (1 << 6) + 1, UpdateMe); blink 778 Source/bindings/v8/SerializedScriptValue.cpp if (usages & blink::WebCryptoKeyUsageEncrypt) blink 780 Source/bindings/v8/SerializedScriptValue.cpp if (usages & blink::WebCryptoKeyUsageDecrypt) blink 782 Source/bindings/v8/SerializedScriptValue.cpp if (usages & blink::WebCryptoKeyUsageSign) blink 784 Source/bindings/v8/SerializedScriptValue.cpp if (usages & blink::WebCryptoKeyUsageVerify) blink 786 Source/bindings/v8/SerializedScriptValue.cpp if (usages & blink::WebCryptoKeyUsageDeriveKey) blink 788 Source/bindings/v8/SerializedScriptValue.cpp if (usages & blink::WebCryptoKeyUsageWrapKey) blink 790 Source/bindings/v8/SerializedScriptValue.cpp if (usages & blink::WebCryptoKeyUsageUnwrapKey) blink 2134 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoKeyAlgorithm algorithm; blink 2135 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoKeyType type; blink 2158 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoKeyUsageMask usages; blink 2173 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoKey key = blink::WebCryptoKey::createNull(); blink 2174 Source/bindings/v8/SerializedScriptValue.cpp if (!blink::Platform::current()->crypto()->deserializeKeyForClone( blink 2273 Source/bindings/v8/SerializedScriptValue.cpp bool doReadHmacKey(blink::WebCryptoKeyAlgorithm& algorithm, blink::WebCryptoKeyType& type) blink 2278 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoAlgorithmId hash; blink 2281 Source/bindings/v8/SerializedScriptValue.cpp algorithm = blink::WebCryptoKeyAlgorithm::createHmac(hash, lengthBytes * 8); blink 2282 Source/bindings/v8/SerializedScriptValue.cpp type = blink::WebCryptoKeyTypeSecret; blink 2286 Source/bindings/v8/SerializedScriptValue.cpp bool doReadAesKey(blink::WebCryptoKeyAlgorithm& algorithm, blink::WebCryptoKeyType& type) blink 2288 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoAlgorithmId id; blink 2294 Source/bindings/v8/SerializedScriptValue.cpp algorithm = blink::WebCryptoKeyAlgorithm::createAes(id, lengthBytes * 8); blink 2295 Source/bindings/v8/SerializedScriptValue.cpp type = blink::WebCryptoKeyTypeSecret; blink 2299 Source/bindings/v8/SerializedScriptValue.cpp bool doReadRsaKey(bool hasHash, blink::WebCryptoKeyAlgorithm& algorithm, blink::WebCryptoKeyType& type) blink 2301 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoAlgorithmId id; blink 2311 Source/bindings/v8/SerializedScriptValue.cpp type = blink::WebCryptoKeyTypePublic; blink 2314 Source/bindings/v8/SerializedScriptValue.cpp type = blink::WebCryptoKeyTypePrivate; blink 2335 Source/bindings/v8/SerializedScriptValue.cpp blink::WebCryptoAlgorithmId hash; blink 2338 Source/bindings/v8/SerializedScriptValue.cpp algorithm = blink::WebCryptoKeyAlgorithm::createRsaHashed(id, modulusLengthBits, publicExponent, publicExponentSize, hash); blink 2340 Source/bindings/v8/SerializedScriptValue.cpp algorithm = blink::WebCryptoKeyAlgorithm::createRsa(id, modulusLengthBits, publicExponent, publicExponentSize); blink 2346 Source/bindings/v8/SerializedScriptValue.cpp bool doReadAlgorithmId(blink::WebCryptoAlgorithmId& id) blink 2354 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdAesCbc; blink 2357 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdHmac; blink 2360 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5; blink 2363 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5; blink 2366 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdSha1; blink 2369 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdSha256; blink 2372 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdSha384; blink 2375 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdSha512; blink 2378 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdAesGcm; blink 2381 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdRsaOaep; blink 2384 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdAesCtr; blink 2387 Source/bindings/v8/SerializedScriptValue.cpp id = blink::WebCryptoAlgorithmIdAesKw; blink 2394 Source/bindings/v8/SerializedScriptValue.cpp bool doReadKeyUsages(blink::WebCryptoKeyUsageMask& usages, bool& extractable) blink 2397 Source/bindings/v8/SerializedScriptValue.cpp COMPILE_ASSERT(blink::EndOfWebCryptoKeyUsage == (1 << 6) + 1, UpdateMe); blink 2413 Source/bindings/v8/SerializedScriptValue.cpp usages |= blink::WebCryptoKeyUsageEncrypt; blink 2415 Source/bindings/v8/SerializedScriptValue.cpp usages |= blink::WebCryptoKeyUsageDecrypt; blink 2417 Source/bindings/v8/SerializedScriptValue.cpp usages |= blink::WebCryptoKeyUsageSign; blink 2419 Source/bindings/v8/SerializedScriptValue.cpp usages |= blink::WebCryptoKeyUsageVerify; blink 2421 Source/bindings/v8/SerializedScriptValue.cpp usages |= blink::WebCryptoKeyUsageDeriveKey; blink 2423 Source/bindings/v8/SerializedScriptValue.cpp usages |= blink::WebCryptoKeyUsageWrapKey; blink 2425 Source/bindings/v8/SerializedScriptValue.cpp usages |= blink::WebCryptoKeyUsageUnwrapKey; blink 81 Source/bindings/v8/V8Initializer.cpp int memoryUsageMB = blink::Platform::current()->actualMemoryUsageMB(); blink 170 Source/bindings/v8/V8Initializer.cpp constraints.ConfigureDefaults(static_cast<uint64_t>(blink::Platform::current()->physicalMemoryMB()) << 20, static_cast<uint32_t>(blink::Platform::current()->numberOfProcessors())); blink 289 Source/bindings/v8/V8WindowShell.cpp blink::Platform::current()->histogramCustomCounts(histogramName, contextCreationDurationInMilliseconds, 0, 10000, 50); blink 108 Source/bindings/v8/WorkerScriptController.cpp blink::Platform::current()->didStopWorkerRunLoop(blink::WebWorkerRunLoop(&m_workerGlobalScope.thread()->runLoop())); blink 133 Source/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp blink::Platform::current()->histogramEnumeration(name, sample, boundaryValue); blink 38 Source/core/accessibility/AXMediaControls.cpp using blink::WebLocalizedString; blink 45 Source/core/accessibility/AXObject.cpp using blink::WebLocalizedString; blink 74 Source/core/accessibility/AXRenderObject.cpp using blink::WebLocalizedString; blink 44 Source/core/animation/AnimationTranslationUtil.cpp using namespace blink; blink 34 Source/core/animation/AnimationTranslationUtil.h namespace blink { blink 44 Source/core/animation/AnimationTranslationUtil.h void toWebTransformOperations(const TransformOperations& inOperations, blink::WebTransformOperations* outOperations); blink 45 Source/core/animation/AnimationTranslationUtil.h bool toWebFilterOperations(const FilterOperations& inOperations, blink::WebFilterOperations* outOperations); blink 46 Source/core/animation/AnimationTranslationUtilTest.cpp using namespace blink; blink 50 Source/core/animation/AnimationTranslationUtilTest.cpp class WebTransformOperationsMock : public blink::WebTransformOperations { blink 63 Source/core/animation/AnimationTranslationUtilTest.cpp class WebFilterOperationsMock : public blink::WebFilterOperations { blink 241 Source/core/animation/CompositorAnimations.cpp Vector<OwnPtr<blink::WebAnimation> > animations; blink 350 Source/core/animation/CompositorAnimations.cpp curve.add(keyframe, blink::WebAnimationCurve::TimingFunctionTypeLinear); blink 360 Source/core/animation/CompositorAnimations.cpp blink::WebAnimationCurve::TimingFunctionType easeType; blink 363 Source/core/animation/CompositorAnimations.cpp easeType = blink::WebAnimationCurve::TimingFunctionTypeEase; blink 366 Source/core/animation/CompositorAnimations.cpp easeType = blink::WebAnimationCurve::TimingFunctionTypeEaseIn; blink 369 Source/core/animation/CompositorAnimations.cpp easeType = blink::WebAnimationCurve::TimingFunctionTypeEaseOut; blink 372 Source/core/animation/CompositorAnimations.cpp easeType = blink::WebAnimationCurve::TimingFunctionTypeEaseInOut; blink 396 Source/core/animation/CompositorAnimations.cpp void CompositorAnimationsImpl::addKeyframesToCurve(blink::WebAnimationCurve& curve, const PropertySpecificKeyframeVector& keyframes, bool reverse) blink 413 Source/core/animation/CompositorAnimations.cpp case blink::WebAnimationCurve::AnimationCurveTypeFilter: { blink 414 Source/core/animation/CompositorAnimations.cpp OwnPtr<blink::WebFilterOperations> ops = adoptPtr(blink::Platform::current()->compositorSupport()->createFilterOperations()); blink 418 Source/core/animation/CompositorAnimations.cpp blink::WebFilterKeyframe filterKeyframe(keyframes[i]->offset(), ops.release()); blink 419 Source/core/animation/CompositorAnimations.cpp blink::WebFilterAnimationCurve* filterCurve = static_cast<blink::WebFilterAnimationCurve*>(&curve); blink 423 Source/core/animation/CompositorAnimations.cpp case blink::WebAnimationCurve::AnimationCurveTypeFloat: { blink 424 Source/core/animation/CompositorAnimations.cpp blink::WebFloatKeyframe floatKeyframe(keyframes[i]->offset(), toAnimatableDouble(value)->toDouble()); blink 425 Source/core/animation/CompositorAnimations.cpp blink::WebFloatAnimationCurve* floatCurve = static_cast<blink::WebFloatAnimationCurve*>(&curve); blink 429 Source/core/animation/CompositorAnimations.cpp case blink::WebAnimationCurve::AnimationCurveTypeTransform: { blink 430 Source/core/animation/CompositorAnimations.cpp OwnPtr<blink::WebTransformOperations> ops = adoptPtr(blink::Platform::current()->compositorSupport()->createTransformOperations()); blink 433 Source/core/animation/CompositorAnimations.cpp blink::WebTransformKeyframe transformKeyframe(keyframes[i]->offset(), ops.release()); blink 434 Source/core/animation/CompositorAnimations.cpp blink::WebTransformAnimationCurve* transformCurve = static_cast<blink::WebTransformAnimationCurve*>(&curve); blink 444 Source/core/animation/CompositorAnimations.cpp void CompositorAnimationsImpl::getAnimationOnCompositor(const Timing& timing, const AnimatableValueKeyframeEffectModel& effect, Vector<OwnPtr<blink::WebAnimation> >& animations) blink 462 Source/core/animation/CompositorAnimations.cpp blink::WebAnimation::TargetProperty targetProperty; blink 463 Source/core/animation/CompositorAnimations.cpp OwnPtr<blink::WebAnimationCurve> curve; blink 466 Source/core/animation/CompositorAnimations.cpp targetProperty = blink::WebAnimation::TargetPropertyOpacity; blink 468 Source/core/animation/CompositorAnimations.cpp blink::WebFloatAnimationCurve* floatCurve = blink::Platform::current()->compositorSupport()->createFloatAnimationCurve(); blink 474 Source/core/animation/CompositorAnimations.cpp targetProperty = blink::WebAnimation::TargetPropertyFilter; blink 475 Source/core/animation/CompositorAnimations.cpp blink::WebFilterAnimationCurve* filterCurve = blink::Platform::current()->compositorSupport()->createFilterAnimationCurve(); blink 481 Source/core/animation/CompositorAnimations.cpp targetProperty = blink::WebAnimation::TargetPropertyTransform; blink 482 Source/core/animation/CompositorAnimations.cpp blink::WebTransformAnimationCurve* transformCurve = blink::Platform::current()->compositorSupport()->createTransformAnimationCurve(); blink 493 Source/core/animation/CompositorAnimations.cpp OwnPtr<blink::WebAnimation> animation = adoptPtr(blink::Platform::current()->compositorSupport()->createAnimation(*curve, targetProperty)); blink 51 Source/core/animation/CompositorAnimationsImpl.h static void getAnimationOnCompositor(const Timing&, const AnimatableValueKeyframeEffectModel&, Vector<OwnPtr<blink::WebAnimation> >& animations); blink 53 Source/core/animation/CompositorAnimationsImpl.h static void addKeyframesToCurve(blink::WebAnimationCurve&, const AnimatableValuePropertySpecificKeyframeVector&, bool reverse); blink 109 Source/core/animation/CompositorAnimationsTest.cpp void getAnimationOnCompositor(Timing& timing, AnimatableValueKeyframeEffectModel& effect, Vector<OwnPtr<blink::WebAnimation> >& animations) blink 556 Source/core/animation/CompositorAnimationsTest.cpp blink::WebFloatAnimationCurveMock* mockCurvePtr = new blink::WebFloatAnimationCurveMock; blink 561 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 562 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 5.0))); blink 565 Source/core/animation/CompositorAnimationsTest.cpp blink::WebAnimationMock* mockAnimationPtr = new blink::WebAnimationMock(blink::WebAnimation::TargetPropertyOpacity); blink 568 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _)) blink 584 Source/core/animation/CompositorAnimationsTest.cpp Vector<OwnPtr<blink::WebAnimation> > result; blink 603 Source/core/animation/CompositorAnimationsTest.cpp blink::WebFloatAnimationCurveMock* mockCurvePtr = new blink::WebFloatAnimationCurveMock; blink 608 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 609 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(10.0, 5.0))); blink 612 Source/core/animation/CompositorAnimationsTest.cpp blink::WebAnimationMock* mockAnimationPtr = new blink::WebAnimationMock(blink::WebAnimation::TargetPropertyOpacity); blink 615 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _)) blink 631 Source/core/animation/CompositorAnimationsTest.cpp Vector<OwnPtr<blink::WebAnimation> > result; blink 653 Source/core/animation/CompositorAnimationsTest.cpp blink::WebFloatAnimationCurveMock* mockCurvePtr = new blink::WebFloatAnimationCurveMock(); blink 659 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 660 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.25, -1.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 661 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.5, 20.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 662 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 5.0))); blink 665 Source/core/animation/CompositorAnimationsTest.cpp blink::WebAnimationMock* mockAnimationPtr = new blink::WebAnimationMock(blink::WebAnimation::TargetPropertyOpacity); blink 668 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _)) blink 684 Source/core/animation/CompositorAnimationsTest.cpp Vector<OwnPtr<blink::WebAnimation> > result; blink 705 Source/core/animation/CompositorAnimationsTest.cpp blink::WebFloatAnimationCurveMock* mockCurvePtr = new blink::WebFloatAnimationCurveMock; blink 710 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 711 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.75, 5.0))); blink 714 Source/core/animation/CompositorAnimationsTest.cpp blink::WebAnimationMock* mockAnimationPtr = new blink::WebAnimationMock(blink::WebAnimation::TargetPropertyOpacity); blink 717 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _)) blink 733 Source/core/animation/CompositorAnimationsTest.cpp Vector<OwnPtr<blink::WebAnimation> > result; blink 761 Source/core/animation/CompositorAnimationsTest.cpp blink::WebFloatAnimationCurveMock* mockCurvePtr = new blink::WebFloatAnimationCurveMock(); blink 767 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 2.0), blink::WebAnimationCurve::TimingFunctionTypeEase)); blink 768 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.5, -1.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 769 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 20.0), 1.0, 2.0, 3.0, 4.0)); blink 770 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(2.0, 5.0))); blink 773 Source/core/animation/CompositorAnimationsTest.cpp blink::WebAnimationMock* mockAnimationPtr = new blink::WebAnimationMock(blink::WebAnimation::TargetPropertyOpacity); blink 776 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _)) blink 792 Source/core/animation/CompositorAnimationsTest.cpp Vector<OwnPtr<blink::WebAnimation> > result; blink 821 Source/core/animation/CompositorAnimationsTest.cpp blink::WebFloatAnimationCurveMock* mockCurvePtr = new blink::WebFloatAnimationCurveMock(); blink 827 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 5.0), 1.0, 0.0, 1.0, 1.0)); blink 828 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.5, 20.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 829 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.75, -1.0), blink::WebAnimationCurve::TimingFunctionTypeEaseOut)); blink 830 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.0, 2.0))); blink 833 Source/core/animation/CompositorAnimationsTest.cpp blink::WebAnimationMock* mockAnimationPtr = new blink::WebAnimationMock(blink::WebAnimation::TargetPropertyOpacity); blink 836 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _)) blink 852 Source/core/animation/CompositorAnimationsTest.cpp Vector<OwnPtr<blink::WebAnimation> > result; blink 874 Source/core/animation/CompositorAnimationsTest.cpp blink::WebFloatAnimationCurveMock* mockCurvePtr = new blink::WebFloatAnimationCurveMock; blink 879 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(0.0, 5.0), blink::WebAnimationCurve::TimingFunctionTypeLinear)); blink 880 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(*mockCurvePtr, add(blink::WebFloatKeyframe(1.5, 2.0))); blink 883 Source/core/animation/CompositorAnimationsTest.cpp blink::WebAnimationMock* mockAnimationPtr = new blink::WebAnimationMock(blink::WebAnimation::TargetPropertyOpacity); blink 886 Source/core/animation/CompositorAnimationsTest.cpp usesMockCurve += EXPECT_CALL(mockCompositor, createAnimation(Ref(*mockCurvePtr), blink::WebAnimation::TargetPropertyOpacity, _)) blink 902 Source/core/animation/CompositorAnimationsTest.cpp Vector<OwnPtr<blink::WebAnimation> > result; blink 52 Source/core/animation/CompositorAnimationsTestHelper.h namespace blink { blink 68 Source/core/animation/CompositorAnimationsTestHelper.h class WebAnimationMock : public blink::WebAnimation { blink 70 Source/core/animation/CompositorAnimationsTestHelper.h blink::WebAnimation::TargetProperty m_property; blink 74 Source/core/animation/CompositorAnimationsTestHelper.h WebAnimationMock(blink::WebAnimation::TargetProperty p) : m_property(p) { } blink 75 Source/core/animation/CompositorAnimationsTestHelper.h virtual blink::WebAnimation::TargetProperty targetProperty() const { return m_property; }; blink 95 Source/core/animation/CompositorAnimationsTestHelper.h template<typename CurveType, blink::WebAnimationCurve::AnimationCurveType CurveId, typename KeyframeType> blink 99 Source/core/animation/CompositorAnimationsTestHelper.h MOCK_METHOD2_T(add, void(const KeyframeType&, blink::WebAnimationCurve::TimingFunctionType)); blink 104 Source/core/animation/CompositorAnimationsTestHelper.h virtual blink::WebAnimationCurve::AnimationCurveType type() const { return CurveId; }; blink 110 Source/core/animation/CompositorAnimationsTestHelper.h typedef WebAnimationCurveMock<blink::WebFloatAnimationCurve, blink::WebAnimationCurve::AnimationCurveTypeFloat, blink::WebFloatKeyframe> WebFloatAnimationCurveMock; blink 120 Source/core/animation/CompositorAnimationsTestHelper.h class WebCompositorSupportMock : public blink::WebCompositorSupport { blink 122 Source/core/animation/CompositorAnimationsTestHelper.h MOCK_METHOD3(createAnimation, blink::WebAnimation*(const blink::WebAnimationCurve& curve, blink::WebAnimation::TargetProperty target, int animationId)); blink 123 Source/core/animation/CompositorAnimationsTestHelper.h MOCK_METHOD0(createFloatAnimationCurve, blink::WebFloatAnimationCurve*()); blink 127 Source/core/animation/CompositorAnimationsTestHelper.h class PlatformProxy : public blink::Platform { blink 134 Source/core/animation/CompositorAnimationsTestHelper.h virtual blink::WebCompositorSupport* compositorSupport() OVERRIDE { return *m_compositor; } blink 141 Source/core/animation/CompositorAnimationsTestHelper.h blink::Platform* m_platform; blink 146 Source/core/animation/CompositorAnimationsTestHelper.h m_platform = blink::Platform::current(); blink 147 Source/core/animation/CompositorAnimationsTestHelper.h blink::Platform::initialize(&m_proxyPlatform); blink 152 Source/core/animation/CompositorAnimationsTestHelper.h blink::Platform::initialize(m_platform); blink 144 Source/core/animation/css/CSSAnimations.cpp blink::Platform::current()->histogramSparse("WebCore.Animation.CSSProperties", UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(property)); blink 453 Source/core/animation/css/CSSAnimations.cpp blink::Platform::current()->histogramSparse("WebCore.Animation.CSSProperties", UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(id)); blink 45 Source/core/clipboard/DataObject.cpp blink::WebClipboard::Buffer buffer = Pasteboard::generalPasteboard()->buffer(); blink 46 Source/core/clipboard/DataObject.cpp uint64_t sequenceNumber = blink::Platform::current()->clipboard()->sequenceNumber(buffer); blink 48 Source/core/clipboard/DataObject.cpp blink::WebVector<blink::WebString> webTypes = blink::Platform::current()->clipboard()->readAvailableTypes(buffer, &ignored); blink 129 Source/core/clipboard/DataObjectItem.cpp RefPtr<SharedBuffer> data = static_cast<PassRefPtr<SharedBuffer> >(blink::Platform::current()->clipboard()->readImage(blink::WebClipboard::BufferStandard)); blink 150 Source/core/clipboard/DataObjectItem.cpp blink::WebClipboard::Buffer buffer = Pasteboard::generalPasteboard()->buffer(); blink 154 Source/core/clipboard/DataObjectItem.cpp data = blink::Platform::current()->clipboard()->readPlainText(buffer); blink 156 Source/core/clipboard/DataObjectItem.cpp blink::WebURL ignoredSourceURL; blink 158 Source/core/clipboard/DataObjectItem.cpp data = blink::Platform::current()->clipboard()->readHTML(buffer, &ignoredSourceURL, &ignored, &ignored); blink 160 Source/core/clipboard/DataObjectItem.cpp data = blink::Platform::current()->clipboard()->readCustomData(buffer, m_type); blink 163 Source/core/clipboard/DataObjectItem.cpp return blink::Platform::current()->clipboard()->sequenceNumber(buffer) == m_sequenceNumber ? data : String(); blink 55 Source/core/clipboard/Pasteboard.cpp : m_buffer(blink::WebClipboard::BufferStandard) blink 61 Source/core/clipboard/Pasteboard.cpp return m_buffer == blink::WebClipboard::BufferSelection; blink 66 Source/core/clipboard/Pasteboard.cpp m_buffer = selectionMode ? blink::WebClipboard::BufferSelection : blink::WebClipboard::BufferStandard; blink 75 Source/core/clipboard/Pasteboard.cpp blink::Platform::current()->clipboard()->writePlainText(plainText); blink 77 Source/core/clipboard/Pasteboard.cpp blink::Platform::current()->clipboard()->writePlainText(text); blink 89 Source/core/clipboard/Pasteboard.cpp blink::WebImage webImage = bitmap->bitmap(); blink 90 Source/core/clipboard/Pasteboard.cpp blink::Platform::current()->clipboard()->writeImage(webImage, blink::WebURL(url), blink::WebString(title)); blink 95 Source/core/clipboard/Pasteboard.cpp blink::Platform::current()->clipboard()->writeDataObject(blink::WebDragData(dataObject)); blink 100 Source/core/clipboard/Pasteboard.cpp return blink::Platform::current()->clipboard()->isFormatAvailable(blink::WebClipboard::FormatSmartPaste, m_buffer); blink 105 Source/core/clipboard/Pasteboard.cpp return blink::Platform::current()->clipboard()->isFormatAvailable(blink::WebClipboard::FormatHTML, m_buffer); blink 110 Source/core/clipboard/Pasteboard.cpp return blink::Platform::current()->clipboard()->readPlainText(m_buffer); blink 115 Source/core/clipboard/Pasteboard.cpp blink::WebURL webURL; blink 116 Source/core/clipboard/Pasteboard.cpp blink::WebString markup = blink::Platform::current()->clipboard()->readHTML(m_buffer, &webURL, &fragmentStart, &fragmentEnd); blink 136 Source/core/clipboard/Pasteboard.cpp blink::Platform::current()->clipboard()->writeHTML(markup, documentURL, text, canSmartCopyOrDelete); blink 70 Source/core/clipboard/Pasteboard.h blink::WebClipboard::Buffer buffer() const { return m_buffer; } blink 75 Source/core/clipboard/Pasteboard.h blink::WebClipboard::Buffer m_buffer; blink 3671 Source/core/css/CSSPrimitiveValueMappings.h template<> inline CSSPrimitiveValue::CSSPrimitiveValue(blink::WebBlendMode blendMode) blink 3676 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeNormal: blink 3679 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeMultiply: blink 3682 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeScreen: blink 3685 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeOverlay: blink 3688 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeDarken: blink 3691 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeLighten: blink 3694 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeColorDodge: blink 3697 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeColorBurn: blink 3700 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeHardLight: blink 3703 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeSoftLight: blink 3706 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeDifference: blink 3709 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeExclusion: blink 3712 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeHue: blink 3715 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeSaturation: blink 3718 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeColor: blink 3721 Source/core/css/CSSPrimitiveValueMappings.h case blink::WebBlendModeLuminosity: blink 3727 Source/core/css/CSSPrimitiveValueMappings.h template<> inline CSSPrimitiveValue::operator blink::WebBlendMode() const blink 3732 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeNormal; blink 3734 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeMultiply; blink 3736 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeScreen; blink 3738 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeOverlay; blink 3740 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeDarken; blink 3742 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeLighten; blink 3744 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeColorDodge; blink 3746 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeColorBurn; blink 3748 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeHardLight; blink 3750 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeSoftLight; blink 3752 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeDifference; blink 3754 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeExclusion; blink 3756 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeHue; blink 3758 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeSaturation; blink 3760 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeColor; blink 3762 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeLuminosity; blink 3768 Source/core/css/CSSPrimitiveValueMappings.h return blink::WebBlendModeNormal; blink 544 Source/core/css/FontFaceSet.cpp blink::Platform::current()->histogramCustomCounts("WebFont.WebFontsInPage", m_count, 1, 100, 50); blink 547 Source/core/css/FontFaceSet.cpp blink::Platform::current()->histogramEnumeration("WebFont.HadBlankText", m_status == HadBlankText ? 1 : 0, 2); blink 33 Source/core/css/LocalFontFaceSource.cpp blink::Platform::current()->histogramEnumeration("WebFont.LocalFontUsed", loadSuccess ? 1 : 0, 2); blink 143 Source/core/css/RemoteFontFaceSource.cpp blink::Platform::current()->histogramCustomCounts("WebFont.BlankTextShownTime", duration, 0, 10000, 50); blink 151 Source/core/css/RemoteFontFaceSource.cpp blink::Platform::current()->histogramCustomCounts(histogramName(font), duration, 0, 10000, 50); blink 158 Source/core/css/RemoteFontFaceSource.cpp blink::Platform::current()->histogramEnumeration("WebFont.CacheHit", histogramValue, CacheHitEnumMax); blink 39 Source/core/dom/MessageChannel.cpp OwnPtr<blink::WebMessagePortChannel> channel1 = adoptPtr(blink::Platform::current()->createMessagePortChannel()); blink 40 Source/core/dom/MessageChannel.cpp OwnPtr<blink::WebMessagePortChannel> channel2 = adoptPtr(blink::Platform::current()->createMessagePortChannel()); blink 88 Source/core/dom/MessagePort.cpp blink::WebString messageString = message->toWireString(); blink 89 Source/core/dom/MessagePort.cpp OwnPtr<blink::WebMessagePortChannelArray> webChannels = toWebMessagePortChannelArray(channels.release()); blink 94 Source/core/dom/MessagePort.cpp PassOwnPtr<blink::WebMessagePortChannelArray> MessagePort::toWebMessagePortChannelArray(PassOwnPtr<MessagePortChannelArray> channels) blink 96 Source/core/dom/MessagePort.cpp OwnPtr<blink::WebMessagePortChannelArray> webChannels; blink 98 Source/core/dom/MessagePort.cpp webChannels = adoptPtr(new blink::WebMessagePortChannelArray(channels->size())); blink 106 Source/core/dom/MessagePort.cpp PassOwnPtr<MessagePortArray> MessagePort::toMessagePortArray(ExecutionContext* context, const blink::WebMessagePortChannelArray& webChannels) blink 118 Source/core/dom/MessagePort.cpp PassOwnPtr<blink::WebMessagePortChannel> MessagePort::disentangle() blink 154 Source/core/dom/MessagePort.cpp void MessagePort::entangle(PassOwnPtr<blink::WebMessagePortChannel> remote) blink 169 Source/core/dom/MessagePort.cpp static bool tryGetMessageFrom(blink::WebMessagePortChannel& webChannel, RefPtr<SerializedScriptValue>& message, OwnPtr<MessagePortChannelArray>& channels) blink 171 Source/core/dom/MessagePort.cpp blink::WebString messageString; blink 172 Source/core/dom/MessagePort.cpp blink::WebMessagePortChannelArray webChannels; blink 57 Source/core/dom/MessagePort.h typedef Vector<OwnPtr<blink::WebMessagePortChannel>, 1> MessagePortChannelArray; blink 63 Source/core/dom/MessagePort.h , public blink::WebMessagePortChannelClient { blink 74 Source/core/dom/MessagePort.h void entangle(PassOwnPtr<blink::WebMessagePortChannel>); blink 75 Source/core/dom/MessagePort.h PassOwnPtr<blink::WebMessagePortChannel> disentangle(); blink 77 Source/core/dom/MessagePort.h static PassOwnPtr<blink::WebMessagePortChannelArray> toWebMessagePortChannelArray(PassOwnPtr<MessagePortChannelArray>); blink 78 Source/core/dom/MessagePort.h static PassOwnPtr<MessagePortArray> toMessagePortArray(ExecutionContext*, const blink::WebMessagePortChannelArray&); blink 116 Source/core/dom/MessagePort.h OwnPtr<blink::WebMessagePortChannel> m_entangledChannel; blink 102 Source/core/dom/VisitedLinkState.cpp if (blink::Platform::current()->isLinkVisited(hash)) blink 1686 Source/core/editing/EditorCommand.cpp blink::Platform::current()->histogramSparse("WebCore.Editing.Commands", m_command->idForUserMetrics); blink 10 Source/core/events/ApplicationCacheErrorEvent.cpp static const String& errorReasonToString(blink::WebApplicationCacheHost::ErrorReason reason) blink 22 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::ManifestError: blink 24 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::SignatureError: blink 26 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::ResourceError: blink 28 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::ChangedError: blink 30 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::AbortError: blink 32 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::QuotaError: blink 34 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::PolicyError: blink 36 Source/core/events/ApplicationCacheErrorEvent.cpp case blink::WebApplicationCacheHost::UnknownError: blink 53 Source/core/events/ApplicationCacheErrorEvent.cpp ApplicationCacheErrorEvent::ApplicationCacheErrorEvent(blink::WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message) blink 35 Source/core/events/ApplicationCacheErrorEvent.h static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(blink::WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message) blink 56 Source/core/events/ApplicationCacheErrorEvent.h ApplicationCacheErrorEvent(blink::WebApplicationCacheHost::ErrorReason, const String& url, int status, const String& message); blink 87 Source/core/fetch/CachingCorrectnessTest.cpp class ProxyPlatform : public blink::Platform { blink 115 Source/core/fetch/CachingCorrectnessTest.cpp m_savedPlatform = blink::Platform::current(); blink 116 Source/core/fetch/CachingCorrectnessTest.cpp blink::Platform::initialize(&m_proxyPlatform); blink 143 Source/core/fetch/CachingCorrectnessTest.cpp blink::Platform::initialize(m_savedPlatform); blink 146 Source/core/fetch/CachingCorrectnessTest.cpp blink::Platform* m_savedPlatform; blink 101 Source/core/fetch/ImageResourceTest.cpp blink::WebURLResponse response; blink 104 Source/core/fetch/ImageResourceTest.cpp WTF::String localPath = String(blink::Platform::current()->unitTestSupport()->webKitRootDir()) + "/Source/web/tests/data/cancelTest.html"; blink 105 Source/core/fetch/ImageResourceTest.cpp blink::Platform::current()->unitTestSupport()->registerMockedURL(testURL, response, localPath); blink 132 Source/core/fetch/ImageResourceTest.cpp blink::Platform::current()->unitTestSupport()->unregisterMockedURL(testURL); blink 92 Source/core/fetch/MemoryCache.cpp blink::Platform::current()->currentThread()->removeTaskObserver(this); blink 600 Source/core/fetch/MemoryCache.cpp blink::Platform::current()->currentThread()->addTaskObserver(this); blink 636 Source/core/fetch/MemoryCache.cpp blink::Platform::current()->currentThread()->removeTaskObserver(this); blink 63 Source/core/fetch/MemoryCache.h class MemoryCache FINAL : public blink::WebThread::TaskObserver { blink 195 Source/core/fetch/MemoryCacheTest.cpp class Task1 : public blink::WebThread::Task { blink 229 Source/core/fetch/MemoryCacheTest.cpp class Task2 : public blink::WebThread::Task { blink 239 Source/core/fetch/MemoryCacheTest.cpp blink::Platform::current()->currentThread()->exitRunLoop(); blink 247 Source/core/fetch/MemoryCacheTest.cpp blink::Platform::current()->currentThread()->postTask(new Task1(cachedLiveResource, cachedDeadResource)); blink 248 Source/core/fetch/MemoryCacheTest.cpp blink::Platform::current()->currentThread()->postTask(new Task2(cachedLiveResource->encodedSize() + cachedLiveResource->overheadSize())); blink 249 Source/core/fetch/MemoryCacheTest.cpp blink::Platform::current()->currentThread()->enterRunLoop(); blink 403 Source/core/fetch/Resource.cpp blink::Platform::current()->cacheMetadata(m_response.url(), m_response.responseTime(), serializedData.data(), serializedData.size()); blink 152 Source/core/fetch/ResourceFetcher.cpp blink::WebString mimetype; blink 153 Source/core/fetch/ResourceFetcher.cpp blink::WebString charset; blink 154 Source/core/fetch/ResourceFetcher.cpp RefPtr<SharedBuffer> data = PassRefPtr<SharedBuffer>(blink::Platform::current()->parseDataURL(url, mimetype, charset)); blink 1382 Source/core/fetch/ResourceFetcher.cpp blink::Platform::current()->histogramCustomCounts( blink 1384 Source/core/fetch/ResourceFetcher.cpp blink::Platform::current()->histogramCustomCounts( blink 1386 Source/core/fetch/ResourceFetcher.cpp blink::Platform::current()->histogramCustomCounts( blink 154 Source/core/fetch/ResourceLoader.cpp m_loader = adoptPtr(blink::Platform::current()->createURLLoader()); blink 156 Source/core/fetch/ResourceLoader.cpp blink::WrappedResourceRequest wrappedRequest(m_request); blink 183 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::attachThreadedDataReceiver(PassOwnPtr<blink::WebThreadedDataReceiver> threadedDataReceiver) blink 189 Source/core/fetch/ResourceLoader.cpp blink::WebThreadedDataReceiver* rawThreadedDataReceiver = threadedDataReceiver.leakPtr(); blink 195 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::didDownloadData(blink::WebURLLoader*, int length, int encodedDataLength) blink 220 Source/core/fetch/ResourceLoader.cpp m_loader->didChangePriority(static_cast<blink::WebURLRequest::Priority>(loadPriority), intraPriorityValue); blink 274 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::willSendRequest(blink::WebURLLoader*, blink::WebURLRequest& passedRequest, const blink::WebURLResponse& passedRedirectResponse) blink 300 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::didReceiveCachedMetadata(blink::WebURLLoader*, const char* data, int length) blink 307 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) blink 320 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::didReceiveResponse(blink::WebURLLoader*, const blink::WebURLResponse& response) blink 369 Source/core/fetch/ResourceLoader.cpp didFinishLoadingOnePart(0, blink::WebURLLoaderClient::kUnknownEncodedDataLength); blink 385 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::didReceiveData(blink::WebURLLoader*, const char* data, int length, int encodedDataLength) blink 407 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::didFinishLoading(blink::WebURLLoader*, double finishTime, int64 encodedDataLength) blink 429 Source/core/fetch/ResourceLoader.cpp void ResourceLoader::didFail(blink::WebURLLoader*, const blink::WebURLError& error) blink 461 Source/core/fetch/ResourceLoader.cpp OwnPtr<blink::WebURLLoader> loader = adoptPtr(blink::Platform::current()->createURLLoader()); blink 474 Source/core/fetch/ResourceLoader.cpp blink::WrappedResourceRequest requestIn(m_request); blink 475 Source/core/fetch/ResourceLoader.cpp blink::WebURLResponse responseOut; blink 477 Source/core/fetch/ResourceLoader.cpp blink::WebURLError errorOut; blink 478 Source/core/fetch/ResourceLoader.cpp blink::WebData dataOut; blink 488 Source/core/fetch/ResourceLoader.cpp int64 encodedDataLength = resourceLoadInfo ? resourceLoadInfo->encodedDataLength : blink::WebURLLoaderClient::kUnknownEncodedDataLength; blink 39 Source/core/fetch/ResourceLoader.h namespace blink { blink 51 Source/core/fetch/ResourceLoader.h class ResourceLoader FINAL : public RefCounted<ResourceLoader>, protected blink::WebURLLoaderClient { blink 69 Source/core/fetch/ResourceLoader.h void attachThreadedDataReceiver(PassOwnPtr<blink::WebThreadedDataReceiver>); blink 76 Source/core/fetch/ResourceLoader.h virtual void willSendRequest(blink::WebURLLoader*, blink::WebURLRequest&, const blink::WebURLResponse& redirectResponse) OVERRIDE; blink 77 Source/core/fetch/ResourceLoader.h virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE; blink 78 Source/core/fetch/ResourceLoader.h virtual void didReceiveResponse(blink::WebURLLoader*, const blink::WebURLResponse&) OVERRIDE; blink 79 Source/core/fetch/ResourceLoader.h virtual void didReceiveData(blink::WebURLLoader*, const char*, int, int encodedDataLength) OVERRIDE; blink 80 Source/core/fetch/ResourceLoader.h virtual void didReceiveCachedMetadata(blink::WebURLLoader*, const char* data, int length) OVERRIDE; blink 81 Source/core/fetch/ResourceLoader.h virtual void didFinishLoading(blink::WebURLLoader*, double finishTime, int64 encodedDataLength) OVERRIDE; blink 82 Source/core/fetch/ResourceLoader.h virtual void didFail(blink::WebURLLoader*, const blink::WebURLError&) OVERRIDE; blink 83 Source/core/fetch/ResourceLoader.h virtual void didDownloadData(blink::WebURLLoader*, int, int) OVERRIDE; blink 104 Source/core/fetch/ResourceLoader.h OwnPtr<blink::WebURLLoader> m_loader; blink 100 Source/core/fileapi/File.cpp , m_name(blink::Platform::current()->fileUtilities()->baseName(path)) blink 155 Source/core/frame/DOMWindow.cpp blink::Platform::current()->suddenTerminationChanged(false); blink 160 Source/core/frame/DOMWindow.cpp blink::Platform::current()->suddenTerminationChanged(true); blink 36 Source/core/frame/Frame.h namespace blink { blink 92 Source/core/frame/Frame.h void setRemotePlatformLayer(blink::WebLayer* remotePlatformLayer) { m_remotePlatformLayer = remotePlatformLayer; } blink 93 Source/core/frame/Frame.h blink::WebLayer* remotePlatformLayer() const { return m_remotePlatformLayer; } blink 112 Source/core/frame/Frame.h blink::WebLayer* m_remotePlatformLayer; blink 55 Source/core/frame/PinchViewport.cpp using blink::WebLayer; blink 56 Source/core/frame/PinchViewport.cpp using blink::WebLayerTreeView; blink 57 Source/core/frame/PinchViewport.cpp using blink::WebScrollbar; blink 58 Source/core/frame/PinchViewport.cpp using blink::WebScrollbarLayer; blink 42 Source/core/frame/PinchViewport.h namespace blink { blink 70 Source/core/frame/PinchViewport.h void registerLayersWithTreeView(blink::WebLayerTreeView*) const; blink 71 Source/core/frame/PinchViewport.h void clearLayersForTreeView(blink::WebLayerTreeView*) const; blink 103 Source/core/frame/PinchViewport.h void setupScrollbar(blink::WebScrollbar::Orientation); blink 111 Source/core/frame/PinchViewport.h OwnPtr<blink::WebScrollbarLayer> m_webOverlayScrollbarHorizontal; blink 112 Source/core/frame/PinchViewport.h OwnPtr<blink::WebScrollbarLayer> m_webOverlayScrollbarVertical; blink 550 Source/core/frame/UseCounter.cpp blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver", PageDestruction, NumberOfFeatures); blink 557 Source/core/frame/UseCounter.cpp blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver", PageVisits, NumberOfFeatures); blink 562 Source/core/frame/UseCounter.cpp blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver", i, NumberOfFeatures); blink 575 Source/core/frame/UseCounter.cpp blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver.CSSProperties", cssSampleId, maximumCSSSampleId()); blink 581 Source/core/frame/UseCounter.cpp blink::Platform::current()->histogramEnumeration("WebCore.FeatureObserver.CSSProperties", totalPagesMeasuredCSSSampleId(), maximumCSSSampleId()); blink 303 Source/core/frame/csp/ContentSecurityPolicy.cpp void computeDigest(const char* source, size_t length, blink::WebCryptoAlgorithmId algorithmId, DigestValue& digest) blink 305 Source/core/frame/csp/ContentSecurityPolicy.cpp blink::WebCrypto* crypto = blink::Platform::current()->crypto(); blink 306 Source/core/frame/csp/ContentSecurityPolicy.cpp blink::WebArrayBuffer result; blink 325 Source/core/frame/csp/ContentSecurityPolicy.cpp blink::WebCryptoAlgorithmId webCryptoAlgorithmId; blink 327 Source/core/frame/csp/ContentSecurityPolicy.cpp { ContentSecurityPolicyHashAlgorithmSha1, blink::WebCryptoAlgorithmIdSha1 }, blink 328 Source/core/frame/csp/ContentSecurityPolicy.cpp { ContentSecurityPolicyHashAlgorithmSha256, blink::WebCryptoAlgorithmIdSha256 }, blink 329 Source/core/frame/csp/ContentSecurityPolicy.cpp { ContentSecurityPolicyHashAlgorithmSha384, blink::WebCryptoAlgorithmIdSha384 }, blink 330 Source/core/frame/csp/ContentSecurityPolicy.cpp { ContentSecurityPolicyHashAlgorithmSha512, blink::WebCryptoAlgorithmIdSha512 } blink 62 Source/core/html/HTMLAnchorElement.cpp void preconnectToURL(const KURL& url, blink::WebPreconnectMotivation motivation) blink 64 Source/core/html/HTMLAnchorElement.cpp blink::WebPrescientNetworking* prescientNetworking = blink::Platform::current()->prescientNetworking(); blink 97 Source/core/html/HTMLAnchorElement.cpp void prefetch(blink::WebPreconnectMotivation); blink 584 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramEnumeration("MouseEventPrefetch.MouseOvers", 0, 2); blink 586 Source/core/html/HTMLAnchorElement.cpp prefetch(blink::WebPreconnectMotivationLinkMouseOver); blink 594 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramCustomCounts("MouseEventPrefetch.MouseOverDuration_NoClick", mouseOverDuration * 1000, 0, 10000, 100); blink 604 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramEnumeration("MouseEventPrefetch.MouseDowns", 0, 2); blink 606 Source/core/html/HTMLAnchorElement.cpp prefetch(blink::WebPreconnectMotivationLinkMouseDown); blink 613 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramEnumeration("MouseEventPrefetch.TapUnconfirmeds", 0, 2); blink 615 Source/core/html/HTMLAnchorElement.cpp prefetch(blink::WebPreconnectMotivationLinkTapUnconfirmed); blink 622 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramEnumeration("MouseEventPrefetch.TapDowns", 0, 2); blink 624 Source/core/html/HTMLAnchorElement.cpp prefetch(blink::WebPreconnectMotivationLinkTapDown); blink 633 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramCustomCounts("MouseEventPrefetch.MouseOverDuration_Click", mouseOverDuration * 1000, 0, 10000, 100); blink 637 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramEnumeration("MouseEventPrefetch.MouseDownFollowedByClick", capturedMouseDown, 2); blink 642 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramCustomCounts("MouseEventPrefetch.MouseDownDuration_Click", mouseDownDuration * 1000, 0, 10000, 100); blink 649 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramCustomCounts("MouseEventPrefetch.TapDownDuration_Click", tapDownDuration * 1000, 0, 10000, 100); blink 653 Source/core/html/HTMLAnchorElement.cpp blink::Platform::current()->histogramEnumeration("MouseEventPrefetch.PreTapEventsFollowedByClick", flags, 4); blink 686 Source/core/html/HTMLAnchorElement.cpp void HTMLAnchorElement::PrefetchEventHandler::prefetch(blink::WebPreconnectMotivation motivation) blink 694 Source/core/html/HTMLAnchorElement.cpp if (motivation == blink::WebPreconnectMotivationLinkMouseOver) blink 170 Source/core/html/HTMLCanvasElement.cpp blink::Platform::current()->histogramEnumeration("Canvas.ContextType", Context2d, ContextTypeCount); blink 197 Source/core/html/HTMLCanvasElement.cpp blink::Platform::current()->histogramEnumeration("Canvas.ContextType", contextType, ContextTypeCount); blink 327 Source/core/html/HTMLCanvasElement.cpp context->drawImageBuffer(imageBuffer, pixelSnappedIntRect(r), compositeOperator, blink::WebBlendModeNormal); blink 432 Source/core/html/HTMLCanvasElement.cpp if (!blink::Platform::current()->canAccelerate2dCanvas()) blink 65 Source/core/html/HTMLDetailsElement.cpp defaultSummary->appendChild(Text::create(document(), locale().queryString(blink::WebLocalizedString::DetailsLabel))); blink 171 Source/core/html/HTMLImageElement.cpp blink::WebBlendMode blendOp = blink::WebBlendModeNormal; blink 804 Source/core/html/HTMLInputElement.cpp alt = locale().queryString(blink::WebLocalizedString::InputElementAltText); blink 85 Source/core/html/HTMLMediaElement.cpp using blink::WebInbandTextTrack; blink 86 Source/core/html/HTMLMediaElement.cpp using blink::WebMediaPlayer; blink 87 Source/core/html/HTMLMediaElement.cpp using blink::WebMimeRegistry; blink 187 Source/core/html/HTMLMediaElement.cpp WebMimeRegistry::SupportsType supported = blink::Platform::current()->mimeRegistry()->supportsMediaMIMEType(contentMIMEType, contentTypeCodecs, keySystem.lower()); blink 215 Source/core/html/HTMLMediaElement.cpp return blink::Platform::current()->mimeRegistry()->supportsMediaMIMEType(type, typeCodecs, system); blink 3208 Source/core/html/HTMLMediaElement.cpp blink::WebLayer* HTMLMediaElement::platformLayer() const blink 3615 Source/core/html/HTMLMediaElement.cpp void HTMLMediaElement::mediaPlayerSetWebLayer(blink::WebLayer* webLayer) blink 3640 Source/core/html/HTMLMediaElement.cpp void HTMLMediaElement::mediaPlayerMediaSourceOpened(blink::WebMediaSource* webMediaSource) blink 39 Source/core/html/HTMLMediaElement.h namespace blink { blink 76 Source/core/html/HTMLMediaElement.h static blink::WebMimeRegistry::SupportsType supportsType(const ContentType&, const String& keySystem = String()); blink 84 Source/core/html/HTMLMediaElement.h blink::WebMediaPlayer* webMediaPlayer() const { return m_player ? m_player->webMediaPlayer() : 0; } blink 91 Source/core/html/HTMLMediaElement.h blink::WebLayer* platformLayer() const; blink 182 Source/core/html/HTMLMediaElement.h virtual void mediaPlayerDidAddTextTrack(blink::WebInbandTextTrack*) OVERRIDE FINAL; blink 183 Source/core/html/HTMLMediaElement.h virtual void mediaPlayerDidRemoveTextTrack(blink::WebInbandTextTrack*) OVERRIDE FINAL; blink 329 Source/core/html/HTMLMediaElement.h virtual void mediaPlayerSetWebLayer(blink::WebLayer*) OVERRIDE FINAL; blink 331 Source/core/html/HTMLMediaElement.h virtual void mediaPlayerMediaSourceOpened(blink::WebMediaSource*) OVERRIDE FINAL; blink 355 Source/core/html/HTMLMediaElement.h blink::WebMediaPlayer::LoadType loadType() const; blink 417 Source/core/html/HTMLMediaElement.h blink::WebMediaPlayer::CORSMode corsMode() const; blink 455 Source/core/html/HTMLMediaElement.h blink::WebLayer* m_webLayer; blink 37 Source/core/html/HTMLMediaSource.h namespace blink { blink 62 Source/core/html/HTMLMediaSource.h virtual void setWebMediaSourceAndOpen(PassOwnPtr<blink::WebMediaSource>) = 0; blink 150 Source/core/html/HTMLSelectElement.cpp return locale().queryString(blink::WebLocalizedString::ValidationValueMissingForSelect); blink 471 Source/core/html/HTMLTextAreaElement.cpp return locale().queryString(blink::WebLocalizedString::ValidationValueMissing); blink 196 Source/core/html/HTMLVideoElement.cpp bool HTMLVideoElement::copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D* context, Platform3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premultiplyAlpha, bool flipY) blink 32 Source/core/html/HTMLVideoElement.h namespace blink { blink 63 Source/core/html/HTMLVideoElement.h bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY); blink 44 Source/core/html/TimeRanges.cpp PassRefPtr<TimeRanges> TimeRanges::create(const blink::WebTimeRanges& webRanges) blink 51 Source/core/html/TimeRanges.h static PassRefPtr<TimeRanges> create(const blink::WebTimeRanges&); blink 66 Source/core/html/TimeRangesTest.cpp blink::WebTimeRanges webRanges(static_cast<size_t>(2)); blink 34 Source/core/html/canvas/CanvasRenderingContext.h namespace blink { class WebLayer; } blink 58 Source/core/html/canvas/CanvasRenderingContext.h virtual blink::WebLayer* platformLayer() const { return 0; } blink 240 Source/core/html/canvas/CanvasRenderingContext2D.cpp , m_globalBlend(blink::WebBlendModeNormal) blink 666 Source/core/html/canvas/CanvasRenderingContext2D.cpp blink::WebBlendMode blendMode = blink::WebBlendModeNormal; blink 1511 Source/core/html/canvas/CanvasRenderingContext2D.cpp blink::WebBlendMode blendMode = c ? c->blendModeOperation() : blink::WebBlendModeNormal; blink 1518 Source/core/html/canvas/CanvasRenderingContext2D.cpp CompositeOperator op, blink::WebBlendMode blendMode) blink 1606 Source/core/html/canvas/CanvasRenderingContext2D.cpp blink::WebBlendMode blendOp = blink::WebBlendModeNormal; blink 1607 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!parseCompositeAndBlendOperator(compositeOperation, op, blendOp) || blendOp != blink::WebBlendModeNormal) blink 2322 Source/core/html/canvas/CanvasRenderingContext2D.cpp blink::WebLayer* CanvasRenderingContext2D::platformLayer() const blink 2443 Source/core/html/canvas/CanvasRenderingContext2D.cpp c->setCompositeOperation(CompositeSourceOver, blink::WebBlendModeNormal); blink 46 Source/core/html/canvas/CanvasRenderingContext2D.h namespace blink { class WebLayer; } blink 267 Source/core/html/canvas/CanvasRenderingContext2D.h blink::WebBlendMode m_globalBlend; blink 309 Source/core/html/canvas/CanvasRenderingContext2D.h void drawImageInternal(CanvasImageSource*, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState&, CompositeOperator, blink::WebBlendMode); blink 344 Source/core/html/canvas/CanvasRenderingContext2D.h virtual blink::WebLayer* platformLayer() const OVERRIDE; blink 52 Source/core/html/canvas/WebGLBuffer.cpp void WebGLBuffer::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) blink 50 Source/core/html/canvas/WebGLBuffer.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE; blink 145 Source/core/html/canvas/WebGLContextAttributes.cpp blink::WebGraphicsContext3D::Attributes WebGLContextAttributes::attributes( blink 146 Source/core/html/canvas/WebGLContextAttributes.cpp const blink::WebString& topDocumentURL, Settings* settings) const blink 148 Source/core/html/canvas/WebGLContextAttributes.cpp blink::WebGraphicsContext3D::Attributes attrs; blink 84 Source/core/html/canvas/WebGLContextAttributes.h blink::WebGraphicsContext3D::Attributes attributes(const blink::WebString&, Settings*) const; blink 49 Source/core/html/canvas/WebGLContextGroup.cpp blink::WebGraphicsContext3D* WebGLContextGroup::getAWebGraphicsContext3D() blink 34 Source/core/html/canvas/WebGLContextGroup.h namespace blink { blink 57 Source/core/html/canvas/WebGLContextGroup.h blink::WebGraphicsContext3D* getAWebGraphicsContext3D(); blink 56 Source/core/html/canvas/WebGLContextObject.cpp blink::WebGraphicsContext3D* WebGLContextObject::getAWebGraphicsContext3D() const blink 31 Source/core/html/canvas/WebGLContextObject.h namespace blink { blink 62 Source/core/html/canvas/WebGLContextObject.h virtual blink::WebGraphicsContext3D* getAWebGraphicsContext3D() const OVERRIDE FINAL; blink 102 Source/core/html/canvas/WebGLDrawBuffers.cpp blink::WebGraphicsContext3D* context = webglContext->webGraphicsContext3D(); blink 55 Source/core/html/canvas/WebGLFramebuffer.cpp virtual void onDetached(blink::WebGraphicsContext3D*) OVERRIDE; blink 56 Source/core/html/canvas/WebGLFramebuffer.cpp virtual void attach(blink::WebGraphicsContext3D*, GLenum attachment) OVERRIDE; blink 57 Source/core/html/canvas/WebGLFramebuffer.cpp virtual void unattach(blink::WebGraphicsContext3D*, GLenum attachment) OVERRIDE; blink 110 Source/core/html/canvas/WebGLFramebuffer.cpp void WebGLRenderbufferAttachment::onDetached(blink::WebGraphicsContext3D* context) blink 115 Source/core/html/canvas/WebGLFramebuffer.cpp void WebGLRenderbufferAttachment::attach(blink::WebGraphicsContext3D* context, GLenum attachment) blink 126 Source/core/html/canvas/WebGLFramebuffer.cpp void WebGLRenderbufferAttachment::unattach(blink::WebGraphicsContext3D* context, GLenum attachment) blink 155 Source/core/html/canvas/WebGLFramebuffer.cpp virtual void onDetached(blink::WebGraphicsContext3D*) OVERRIDE; blink 156 Source/core/html/canvas/WebGLFramebuffer.cpp virtual void attach(blink::WebGraphicsContext3D*, GLenum attachment) OVERRIDE; blink 157 Source/core/html/canvas/WebGLFramebuffer.cpp virtual void unattach(blink::WebGraphicsContext3D*, GLenum attachment) OVERRIDE; blink 208 Source/core/html/canvas/WebGLFramebuffer.cpp void WebGLTextureAttachment::onDetached(blink::WebGraphicsContext3D* context) blink 213 Source/core/html/canvas/WebGLFramebuffer.cpp void WebGLTextureAttachment::attach(blink::WebGraphicsContext3D* context, GLenum attachment) blink 219 Source/core/html/canvas/WebGLFramebuffer.cpp void WebGLTextureAttachment::unattach(blink::WebGraphicsContext3D* context, GLenum attachment) blink 547 Source/core/html/canvas/WebGLFramebuffer.cpp bool WebGLFramebuffer::onAccess(blink::WebGraphicsContext3D* context3d, const char** reason) blink 562 Source/core/html/canvas/WebGLFramebuffer.cpp void WebGLFramebuffer::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) blink 57 Source/core/html/canvas/WebGLFramebuffer.h virtual void onDetached(blink::WebGraphicsContext3D*) = 0; blink 58 Source/core/html/canvas/WebGLFramebuffer.h virtual void attach(blink::WebGraphicsContext3D*, GLenum attachment) = 0; blink 59 Source/core/html/canvas/WebGLFramebuffer.h virtual void unattach(blink::WebGraphicsContext3D*, GLenum attachment) = 0; blink 85 Source/core/html/canvas/WebGLFramebuffer.h bool onAccess(blink::WebGraphicsContext3D*, const char** reason); blink 107 Source/core/html/canvas/WebGLFramebuffer.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE; blink 50 Source/core/html/canvas/WebGLObject.cpp void WebGLObject::deleteObject(blink::WebGraphicsContext3D* context3d) blink 76 Source/core/html/canvas/WebGLObject.cpp void WebGLObject::onDetached(blink::WebGraphicsContext3D* context3d) blink 32 Source/core/html/canvas/WebGLObject.h namespace blink { blink 50 Source/core/html/canvas/WebGLObject.h void deleteObject(blink::WebGraphicsContext3D*); blink 53 Source/core/html/canvas/WebGLObject.h void onDetached(blink::WebGraphicsContext3D*); blink 70 Source/core/html/canvas/WebGLObject.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) = 0; blink 76 Source/core/html/canvas/WebGLObject.h virtual blink::WebGraphicsContext3D* getAWebGraphicsContext3D() const = 0; blink 54 Source/core/html/canvas/WebGLProgram.cpp void WebGLProgram::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject obj) blink 161 Source/core/html/canvas/WebGLProgram.cpp void WebGLProgram::cacheActiveAttribLocations(blink::WebGraphicsContext3D* context3d) blink 169 Source/core/html/canvas/WebGLProgram.cpp blink::WebGraphicsContext3D::ActiveInfo info; blink 183 Source/core/html/canvas/WebGLProgram.cpp blink::WebGraphicsContext3D* context = getAWebGraphicsContext3D(); blink 66 Source/core/html/canvas/WebGLProgram.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE; blink 71 Source/core/html/canvas/WebGLProgram.h void cacheActiveAttribLocations(blink::WebGraphicsContext3D*); blink 55 Source/core/html/canvas/WebGLRenderbuffer.cpp void WebGLRenderbuffer::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) blink 61 Source/core/html/canvas/WebGLRenderbuffer.cpp void WebGLRenderbuffer::deleteEmulatedStencilBuffer(blink::WebGraphicsContext3D* context3d) blink 61 Source/core/html/canvas/WebGLRenderbuffer.h void deleteEmulatedStencilBuffer(blink::WebGraphicsContext3D* context3d); blink 66 Source/core/html/canvas/WebGLRenderbuffer.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE; blink 84 Source/core/html/canvas/WebGLRenderingContext.cpp blink::WebGraphicsContext3D::Attributes attributes = attrs->attributes(document.topDocument().url().string(), settings); blink 85 Source/core/html/canvas/WebGLRenderingContext.cpp OwnPtr<blink::WebGraphicsContext3D> context = adoptPtr(blink::Platform::current()->createOffscreenGraphicsContext3D(attributes, 0)); blink 107 Source/core/html/canvas/WebGLRenderingContext.cpp WebGLRenderingContext::WebGLRenderingContext(HTMLCanvasElement* passedCanvas, PassOwnPtr<blink::WebGraphicsContext3D> context, WebGLContextAttributes* requestedAttributes) blink 44 Source/core/html/canvas/WebGLRenderingContext.h WebGLRenderingContext(HTMLCanvasElement*, PassOwnPtr<blink::WebGraphicsContext3D>, WebGLContextAttributes*); blink 474 Source/core/html/canvas/WebGLRenderingContextBase.cpp class WebGLRenderingContextLostCallback : public blink::WebGraphicsContext3D::WebGraphicsContextLostCallback { blink 484 Source/core/html/canvas/WebGLRenderingContextBase.cpp class WebGLRenderingContextErrorMessageCallback : public blink::WebGraphicsContext3D::WebGraphicsErrorMessageCallback { blink 488 Source/core/html/canvas/WebGLRenderingContextBase.cpp virtual void onErrorMessage(const blink::WebString& message, blink::WGC3Dint) blink 499 Source/core/html/canvas/WebGLRenderingContextBase.cpp WebGLRenderingContextBase::WebGLRenderingContextBase(HTMLCanvasElement* passedCanvas, PassOwnPtr<blink::WebGraphicsContext3D> context, WebGLContextAttributes* requestedAttributes) blink 1997 Source/core/html/canvas/WebGLRenderingContextBase.cpp blink::WebGraphicsContext3D::ActiveInfo info; blink 2007 Source/core/html/canvas/WebGLRenderingContextBase.cpp blink::WebGraphicsContext3D::ActiveInfo info; blink 2075 Source/core/html/canvas/WebGLRenderingContextBase.cpp blink::WebGraphicsContext3D::Attributes attrs = m_context->getContextAttributes(); blink 2651 Source/core/html/canvas/WebGLRenderingContextBase.cpp blink::WebGraphicsContext3D::ActiveInfo info; blink 4202 Source/core/html/canvas/WebGLRenderingContextBase.cpp blink::WebLayer* WebGLRenderingContextBase::platformLayer() const blink 5372 Source/core/html/canvas/WebGLRenderingContextBase.cpp blink::WebGraphicsContext3D::Attributes attributes = m_requestedAttributes->attributes(canvas()->document().topDocument().url().string(), settings); blink 5373 Source/core/html/canvas/WebGLRenderingContextBase.cpp OwnPtr<blink::WebGraphicsContext3D> context = adoptPtr(blink::Platform::current()->createOffscreenGraphicsContext3D(attributes, 0)); blink 46 Source/core/html/canvas/WebGLRenderingContextBase.h namespace blink { blink 327 Source/core/html/canvas/WebGLRenderingContextBase.h blink::WebGraphicsContext3D* webGraphicsContext3D() const { return m_context.get(); } blink 329 Source/core/html/canvas/WebGLRenderingContextBase.h virtual blink::WebLayer* platformLayer() const OVERRIDE; blink 360 Source/core/html/canvas/WebGLRenderingContextBase.h WebGLRenderingContextBase(HTMLCanvasElement*, PassOwnPtr<blink::WebGraphicsContext3D>, WebGLContextAttributes*); blink 395 Source/core/html/canvas/WebGLRenderingContextBase.h OwnPtr<blink::WebGraphicsContext3D> m_context; blink 53 Source/core/html/canvas/WebGLShader.cpp void WebGLShader::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) blink 50 Source/core/html/canvas/WebGLShader.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE; blink 57 Source/core/html/canvas/WebGLSharedObject.cpp blink::WebGraphicsContext3D* WebGLSharedObject::getAWebGraphicsContext3D() const blink 65 Source/core/html/canvas/WebGLSharedObject.h virtual blink::WebGraphicsContext3D* getAWebGraphicsContext3D() const OVERRIDE FINAL; blink 248 Source/core/html/canvas/WebGLTexture.cpp void WebGLTexture::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) blink 81 Source/core/html/canvas/WebGLTexture.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE; blink 62 Source/core/html/canvas/WebGLVertexArrayObjectOES.cpp void WebGLVertexArrayObjectOES::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) blink 90 Source/core/html/canvas/WebGLVertexArrayObjectOES.h virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE; blink 44 Source/core/html/forms/BaseDateAndTimeInputType.cpp using blink::WebLocalizedString; blink 300 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp return locale().queryString(blink::WebLocalizedString::ValidationBadInputForDateTime); blink 60 Source/core/html/forms/CheckboxInputType.cpp return locale().queryString(blink::WebLocalizedString::ValidationValueMissingForCheckbox); blink 44 Source/core/html/forms/DateInputType.cpp using blink::WebLocalizedString; blink 46 Source/core/html/forms/DateTimeLocalInputType.cpp using blink::WebLocalizedString; blink 41 Source/core/html/forms/EmailInputType.cpp using blink::WebLocalizedString; blink 92 Source/core/html/forms/EmailInputType.cpp String unicodeHost = blink::Platform::current()->convertIDNToUnicode(address.substring(atPosition + 1), languages); blink 48 Source/core/html/forms/FileInputType.cpp using blink::WebLocalizedString; blink 74 Source/core/html/forms/InputType.cpp using blink::WebLocalizedString; blink 50 Source/core/html/forms/NumberInputType.cpp using blink::WebLocalizedString; blink 56 Source/core/html/forms/RadioInputType.cpp return locale().queryString(blink::WebLocalizedString::ValidationValueMissingForRadio); blink 69 Source/core/html/forms/ResetInputType.cpp return locale().queryString(blink::WebLocalizedString::ResetButtonDefaultLabel); blink 86 Source/core/html/forms/SubmitInputType.cpp return locale().queryString(blink::WebLocalizedString::SubmitButtonDefaultLabel); blink 68 Source/core/html/forms/URLInputType.cpp return locale().queryString(blink::WebLocalizedString::ValidationTypeMismatchForURL); blink 77 Source/core/html/parser/HTMLDocumentParser.cpp class ParserDataReceiver : public blink::WebThreadedDataReceiver { blink 92 Source/core/html/parser/HTMLDocumentParser.cpp virtual blink::WebThread* backgroundThread() OVERRIDE FINAL blink 70 Source/core/html/parser/HTMLParserThread.cpp if (blink::Platform::current()->currentThread()) { blink 94 Source/core/html/parser/HTMLParserThread.cpp blink::WebThread& HTMLParserThread::platformThread() blink 97 Source/core/html/parser/HTMLParserThread.cpp m_thread = adoptPtr(blink::Platform::current()->createThread("HTMLParserThread")); blink 53 Source/core/html/parser/HTMLParserThread.h blink::WebThread& platformThread(); blink 61 Source/core/html/parser/HTMLParserThread.h OwnPtr<blink::WebThread> m_thread; blink 76 Source/core/html/parser/HTMLResourcePreloader.cpp blink::Platform::current()->histogramCustomCounts("WebCore.PreloadDelayMs", static_cast<int>(1000 * (monotonicallyIncreasingTime() - preload->discoveryTime())), 0, 2000, 20); blink 42 Source/core/html/shadow/DateTimeFieldElement.cpp return Locale::defaultLocale().queryString(blink::WebLocalizedString::AXDateTimeFieldEmptyValueText); blink 38 Source/core/html/shadow/DateTimeFieldElements.cpp using blink::WebLocalizedString; blink 36 Source/core/html/track/InbandTextTrack.cpp using blink::WebInbandTextTrack; blink 37 Source/core/html/track/InbandTextTrack.cpp using blink::WebString; blink 33 Source/core/html/track/InbandTextTrack.h namespace blink { blink 44 Source/core/html/track/InbandTextTrack.h class InbandTextTrack FINAL : public TextTrack, public blink::WebInbandTextTrackClient { blink 46 Source/core/html/track/InbandTextTrack.h static PassRefPtr<InbandTextTrack> create(Document&, blink::WebInbandTextTrack*); blink 53 Source/core/html/track/InbandTextTrack.h InbandTextTrack(Document&, blink::WebInbandTextTrack*); blink 55 Source/core/html/track/InbandTextTrack.h virtual void addWebVTTCue(double, double, const blink::WebString&, const blink::WebString&, const blink::WebString&) OVERRIDE; blink 57 Source/core/html/track/InbandTextTrack.h blink::WebInbandTextTrack* m_webTrack; blink 80 Source/core/inspector/InspectorLayerTreeAgent.cpp static PassRefPtr<TypeBuilder::LayerTree::ScrollRect> buildScrollRect(const blink::WebRect& rect, const TypeBuilder::LayerTree::ScrollRect::Type::Enum& type) blink 96 Source/core/inspector/InspectorLayerTreeAgent.cpp blink::WebLayer* webLayer = graphicsLayer->platformLayer(); blink 104 Source/core/inspector/InspectorLayerTreeAgent.cpp blink::WebRect webRect(webLayer->position().x, webLayer->position().y, webLayer->bounds().width, webLayer->bounds().height); blink 112 Source/core/inspector/InspectorLayerTreeAgent.cpp blink::WebLayer* webLayer = graphicsLayer->platformLayer(); blink 415 Source/core/inspector/InspectorResourceAgent.cpp didFinishLoading(identifier, loader, 0, blink::WebURLLoaderClient::kUnknownEncodedDataLength); blink 46 Source/core/loader/CookieJar.cpp static blink::WebCookieJar* toCookieJar(const Document* document) blink 55 Source/core/loader/CookieJar.cpp blink::WebCookieJar* cookieJar = toCookieJar(document); blink 63 Source/core/loader/CookieJar.cpp blink::WebCookieJar* cookieJar = toCookieJar(document); blink 71 Source/core/loader/CookieJar.cpp blink::WebCookieJar* cookieJar = toCookieJar(document); blink 79 Source/core/loader/CookieJar.cpp blink::WebCookieJar* cookieJar = toCookieJar(document); blink 88 Source/core/loader/CookieJar.cpp blink::WebCookieJar* cookieJar = toCookieJar(document); blink 91 Source/core/loader/CookieJar.cpp blink::WebVector<blink::WebCookie> webCookies; blink 94 Source/core/loader/CookieJar.cpp const blink::WebCookie& webCookie = webCookies[i]; blink 103 Source/core/loader/CookieJar.cpp blink::WebCookieJar* cookieJar = toCookieJar(document); blink 397 Source/core/loader/DocumentLoader.cpp if (blink::Platform::current()->mimeRegistry()->supportsMIMEType(mimeType) == blink::WebMimeRegistry::IsSupported) blink 764 Source/core/loader/DocumentLoader.cpp void DocumentLoader::attachThreadedDataReceiver(PassOwnPtr<blink::WebThreadedDataReceiver> threadedDataReceiver) blink 46 Source/core/loader/DocumentLoader.h namespace blink { blink 129 Source/core/loader/DocumentLoader.h void attachThreadedDataReceiver(PassOwnPtr<blink::WebThreadedDataReceiver>); blink 148 Source/core/loader/EmptyClients.cpp PassOwnPtr<blink::WebServiceWorkerProvider> EmptyFrameLoaderClient::createServiceWorkerProvider() blink 153 Source/core/loader/EmptyClients.cpp PassOwnPtr<blink::WebApplicationCacheHost> EmptyFrameLoaderClient::createApplicationCacheHost(blink::WebApplicationCacheHostClient*) blink 138 Source/core/loader/EmptyClients.h virtual blink::WebScreenInfo screenInfo() const OVERRIDE { return blink::WebScreenInfo(); } blink 249 Source/core/loader/EmptyClients.h virtual blink::WebCookieJar* cookieJar() const OVERRIDE { return 0; } blink 253 Source/core/loader/EmptyClients.h virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerProvider() OVERRIDE; blink 254 Source/core/loader/EmptyClients.h virtual PassOwnPtr<blink::WebApplicationCacheHost> createApplicationCacheHost(blink::WebApplicationCacheHostClient*) OVERRIDE; blink 49 Source/core/loader/FrameLoaderClient.h namespace blink { blink 200 Source/core/loader/FrameLoaderClient.h virtual blink::WebCookieJar* cookieJar() const = 0; blink 209 Source/core/loader/FrameLoaderClient.h virtual void dispatchWillStartUsingPeerConnectionHandler(blink::WebRTCPeerConnectionHandler*) { } blink 223 Source/core/loader/FrameLoaderClient.h virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerProvider() = 0; blink 227 Source/core/loader/FrameLoaderClient.h virtual PassOwnPtr<blink::WebApplicationCacheHost> createApplicationCacheHost(blink::WebApplicationCacheHostClient*) = 0; blink 134 Source/core/loader/PingLoader.cpp m_loader = adoptPtr(blink::Platform::current()->createURLLoader()); blink 136 Source/core/loader/PingLoader.cpp blink::WrappedResourceRequest wrappedRequest(request); blink 153 Source/core/loader/PingLoader.cpp void PingLoader::didReceiveResponse(blink::WebURLLoader*, const blink::WebURLResponse&) blink 160 Source/core/loader/PingLoader.cpp void PingLoader::didReceiveData(blink::WebURLLoader*, const char* data, int dataLength, int encodedDataLength) blink 167 Source/core/loader/PingLoader.cpp void PingLoader::didFinishLoading(blink::WebURLLoader*, double, int64_t) blink 174 Source/core/loader/PingLoader.cpp void PingLoader::didFail(blink::WebURLLoader*, const blink::WebURLError& resourceError) blink 57 Source/core/loader/PingLoader.h class PingLoader FINAL : public PageLifecycleObserver, private blink::WebURLLoaderClient { blink 76 Source/core/loader/PingLoader.h virtual void didReceiveResponse(blink::WebURLLoader*, const blink::WebURLResponse&) OVERRIDE; blink 77 Source/core/loader/PingLoader.h virtual void didReceiveData(blink::WebURLLoader*, const char*, int, int) OVERRIDE; blink 78 Source/core/loader/PingLoader.h virtual void didFinishLoading(blink::WebURLLoader*, double, int64_t) OVERRIDE; blink 79 Source/core/loader/PingLoader.h virtual void didFail(blink::WebURLLoader*, const blink::WebURLError&) OVERRIDE; blink 83 Source/core/loader/PingLoader.h OwnPtr<blink::WebURLLoader> m_loader; blink 44 Source/core/loader/WorkerLoaderClientBridgeSyncHelper.cpp PassOwnPtr<WorkerLoaderClientBridgeSyncHelper> WorkerLoaderClientBridgeSyncHelper::create(ThreadableLoaderClient& client, PassOwnPtr<blink::WebWaitableEvent> event) blink 138 Source/core/loader/WorkerLoaderClientBridgeSyncHelper.cpp WorkerLoaderClientBridgeSyncHelper::WorkerLoaderClientBridgeSyncHelper(ThreadableLoaderClient& client, PassOwnPtr<blink::WebWaitableEvent> event) blink 39 Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h namespace blink { blink 50 Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h static PassOwnPtr<WorkerLoaderClientBridgeSyncHelper> create(ThreadableLoaderClient&, PassOwnPtr<blink::WebWaitableEvent>); blink 68 Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h WorkerLoaderClientBridgeSyncHelper(ThreadableLoaderClient&, PassOwnPtr<blink::WebWaitableEvent>); blink 72 Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h OwnPtr<blink::WebWaitableEvent> m_event; blink 68 Source/core/loader/WorkerThreadableLoader.cpp blink::WebWaitableEvent* shutdownEvent = blink 70 Source/core/loader/WorkerThreadableLoader.cpp OwnPtr<blink::WebWaitableEvent> loaderDone = blink 71 Source/core/loader/WorkerThreadableLoader.cpp adoptPtr(blink::Platform::current()->createWaitableEvent()); blink 73 Source/core/loader/WorkerThreadableLoader.cpp Vector<blink::WebWaitableEvent*> events; blink 85 Source/core/loader/WorkerThreadableLoader.cpp blink::WebWaitableEvent* signalled; blink 88 Source/core/loader/WorkerThreadableLoader.cpp signalled = blink::Platform::current()->waitMultipleEvents(events); blink 55 Source/core/loader/appcache/ApplicationCacheHost.cpp using namespace blink; blink 167 Source/core/loader/appcache/ApplicationCacheHost.cpp void ApplicationCacheHost::notifyApplicationCache(EventID id, int progressTotal, int progressDone, blink::WebApplicationCacheHost::ErrorReason errorReason, const String& errorURL, int errorStatus, const String& errorMessage) blink 185 Source/core/loader/appcache/ApplicationCacheHost.cpp blink::WebApplicationCacheHost::CacheInfo webInfo; blink 195 Source/core/loader/appcache/ApplicationCacheHost.cpp blink::WebVector<blink::WebApplicationCacheHost::ResourceInfo> webResources; blink 215 Source/core/loader/appcache/ApplicationCacheHost.cpp void ApplicationCacheHost::dispatchDOMEvent(EventID id, int progressTotal, int progressDone, blink::WebApplicationCacheHost::ErrorReason errorReason, const String& errorURL, int errorStatus, const String& errorMessage) blink 265 Source/core/loader/appcache/ApplicationCacheHost.cpp void ApplicationCacheHost::notifyEventListener(blink::WebApplicationCacheHost::EventID eventID) blink 267 Source/core/loader/appcache/ApplicationCacheHost.cpp notifyApplicationCache(static_cast<ApplicationCacheHost::EventID>(eventID), 0, 0, blink::WebApplicationCacheHost::UnknownError, String(), 0, String()); blink 270 Source/core/loader/appcache/ApplicationCacheHost.cpp void ApplicationCacheHost::notifyProgressEventListener(const blink::WebURL&, int progressTotal, int progressDone) blink 272 Source/core/loader/appcache/ApplicationCacheHost.cpp notifyApplicationCache(PROGRESS_EVENT, progressTotal, progressDone, blink::WebApplicationCacheHost::UnknownError, String(), 0, String()); blink 275 Source/core/loader/appcache/ApplicationCacheHost.cpp void ApplicationCacheHost::notifyErrorEventListener(blink::WebApplicationCacheHost::ErrorReason reason, const blink::WebURL& url, int status, const blink::WebString& message) blink 52 Source/core/loader/appcache/ApplicationCacheHost.h class ApplicationCacheHost : public blink::WebApplicationCacheHostClient { blink 128 Source/core/loader/appcache/ApplicationCacheHost.h void notifyApplicationCache(EventID, int progressTotal, int progressDone, blink::WebApplicationCacheHost::ErrorReason, const String& errorURL, int errorStatus, const String& errorMessage); blink 138 Source/core/loader/appcache/ApplicationCacheHost.h virtual void notifyEventListener(blink::WebApplicationCacheHost::EventID) OVERRIDE FINAL; blink 139 Source/core/loader/appcache/ApplicationCacheHost.h virtual void notifyProgressEventListener(const blink::WebURL&, int progressTotal, int progressDone) OVERRIDE FINAL; blink 140 Source/core/loader/appcache/ApplicationCacheHost.h virtual void notifyErrorEventListener(blink::WebApplicationCacheHost::ErrorReason, const blink::WebURL&, int status, const blink::WebString& message) OVERRIDE FINAL; blink 149 Source/core/loader/appcache/ApplicationCacheHost.h blink::WebApplicationCacheHost::ErrorReason errorReason; blink 153 Source/core/loader/appcache/ApplicationCacheHost.h DeferredEvent(EventID id, int progressTotal, int progressDone, blink::WebApplicationCacheHost::ErrorReason errorReason, const String& errorURL, int errorStatus, const String& errorMessage) blink 170 Source/core/loader/appcache/ApplicationCacheHost.h void dispatchDOMEvent(EventID, int progressTotal, int progressDone, blink::WebApplicationCacheHost::ErrorReason, const String& errorURL, int errorStatus, const String& errorMessage); blink 172 Source/core/loader/appcache/ApplicationCacheHost.h OwnPtr<blink::WebApplicationCacheHost> m_host; blink 88 Source/core/page/Chrome.cpp blink::WebScreenInfo Chrome::screenInfo() const blink 68 Source/core/page/Chrome.h virtual blink::WebScreenInfo screenInfo() const OVERRIDE; blink 149 Source/core/page/ChromeClient.h virtual blink::WebScreenInfo screenInfo() const = 0; blink 102 Source/core/page/PagePopupController.cpp blink::Platform::current()->histogramEnumeration(name.utf8().data(), sample, boundaryValue); blink 64 Source/core/page/scrolling/ScrollingCoordinator.cpp using blink::WebLayer; blink 65 Source/core/page/scrolling/ScrollingCoordinator.cpp using blink::WebLayerPositionConstraint; blink 66 Source/core/page/scrolling/ScrollingCoordinator.cpp using blink::WebRect; blink 67 Source/core/page/scrolling/ScrollingCoordinator.cpp using blink::WebScrollbarLayer; blink 68 Source/core/page/scrolling/ScrollingCoordinator.cpp using blink::WebVector; blink 242 Source/core/page/scrolling/ScrollingCoordinator.cpp blink::WebScrollbarThemePainter painter(theme, scrollbar); blink 243 Source/core/page/scrolling/ScrollingCoordinator.cpp OwnPtr<blink::WebScrollbarThemeGeometry> geometry(blink::WebScrollbarThemeGeometryNative::create(theme)); blink 245 Source/core/page/scrolling/ScrollingCoordinator.cpp OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->compositorSupport()->createScrollbarLayer(new blink::WebScrollbarImpl(scrollbar), painter, geometry.leakPtr())); blink 252 Source/core/page/scrolling/ScrollingCoordinator.cpp blink::WebScrollbar::Orientation webOrientation = (orientation == HorizontalScrollbar) ? blink::WebScrollbar::Horizontal : blink::WebScrollbar::Vertical; blink 253 Source/core/page/scrolling/ScrollingCoordinator.cpp OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->compositorSupport()->createSolidColorScrollbarLayer(webOrientation, thumbThickness, isLeftSideVerticalScrollbar)); blink 281 Source/core/page/scrolling/ScrollingCoordinator.cpp WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer) blink 961 Source/core/page/scrolling/ScrollingCoordinator.cpp return blink::WebSize(frameView->contentsSize()) != scrollLayer->bounds(); blink 35 Source/core/page/scrolling/ScrollingCoordinator.h namespace blink { blink 98 Source/core/page/scrolling/ScrollingCoordinator.h PassOwnPtr<blink::WebScrollbarLayer> createSolidColorScrollbarLayer(ScrollbarOrientation, int thumbThickness, bool isLeftSideVerticalScrollbar); blink 150 Source/core/page/scrolling/ScrollingCoordinator.h blink::WebScrollbarLayer* addWebScrollbarLayer(ScrollableArea*, ScrollbarOrientation, PassOwnPtr<blink::WebScrollbarLayer>); blink 151 Source/core/page/scrolling/ScrollingCoordinator.h blink::WebScrollbarLayer* getWebScrollbarLayer(ScrollableArea*, ScrollbarOrientation); blink 156 Source/core/page/scrolling/ScrollingCoordinator.h typedef HashMap<ScrollableArea*, OwnPtr<blink::WebScrollbarLayer> > ScrollbarMap; blink 35 Source/core/plugins/PluginView.h namespace blink { class WebLayer; } blink 47 Source/core/plugins/PluginView.h virtual blink::WebLayer* platformLayer() const { return 0; } blink 1509 Source/core/rendering/RenderBox.cpp if (!shouldDrawBackgroundInSeparateBuffer && curLayer->blendMode() != blink::WebBlendModeNormal) blink 1513 Source/core/rendering/RenderBox.cpp if (curLayer->clipOccludesNextLayers(curLayer == fillLayer) && curLayer->hasOpaqueImage(this) && curLayer->image()->canRender(this, style()->effectiveZoom()) && curLayer->hasRepeatXY() && curLayer->blendMode() == blink::WebBlendModeNormal && !boxShadowShouldBeAppliedToBackground(bleedAvoidance)) blink 82 Source/core/rendering/RenderEmbeddedObject.cpp return locale.queryString(blink::WebLocalizedString::MissingPluginText); blink 84 Source/core/rendering/RenderEmbeddedObject.cpp return locale.queryString(blink::WebLocalizedString::BlockedPluginText); blink 159 Source/core/rendering/RenderFileUploadControl.cpp const String label = toHTMLInputElement(node())->locale().queryString(blink::WebLocalizedString::FileButtonNoFileSelectedLabel); blink 1392 Source/core/rendering/RenderLayer.cpp context->setCompositeOperation(context->compositeOperation(), blink::WebBlendModeNormal); blink 55 Source/core/rendering/RenderLayerBlendInfo.cpp , m_blendMode(blink::WebBlendModeNormal) blink 71 Source/core/rendering/RenderLayerBlendInfo.cpp blink::WebBlendMode newBlendMode = m_renderer->style()->blendMode(); blink 75 Source/core/rendering/RenderLayerBlendInfo.cpp bool hadBlendMode = m_blendMode != blink::WebBlendModeNormal; blink 79 Source/core/rendering/RenderLayerBlendInfo.h blink::WebBlendMode blendMode() const { return m_blendMode; } blink 83 Source/core/rendering/RenderLayerBlendInfo.h blink::WebBlendMode m_blendMode; blink 1434 Source/core/rendering/RenderLayerScrollableArea.cpp blink::Platform::current()->histogramEnumeration("Renderer.CompositedScrolling", IsScrollableAreaBucket, CompositedScrollingHistogramMax); blink 1472 Source/core/rendering/RenderLayerScrollableArea.cpp blink::Platform::current()->histogramEnumeration("Renderer.NeedsCompositedScrolling", needsCompositedScrolling, 2); blink 1494 Source/core/rendering/RenderLayerScrollableArea.cpp blink::Platform::current()->histogramEnumeration("Renderer.CompositedScrolling", WillUseCompositedScrollingBucket, CompositedScrollingHistogramMax); blink 620 Source/core/rendering/RenderLayerStackingNode.cpp blink::Platform::current()->histogramEnumeration("Renderer.CompositedScrolling", NeedsToBeStackingContainerBucket, CompositedScrollingHistogramMax); blink 72 Source/core/rendering/RenderTheme.cpp static blink::WebFallbackThemeEngine::State getWebFallbackThemeState(const RenderTheme* theme, const RenderObject* o) blink 75 Source/core/rendering/RenderTheme.cpp return blink::WebFallbackThemeEngine::StateDisabled; blink 77 Source/core/rendering/RenderTheme.cpp return blink::WebFallbackThemeEngine::StatePressed; blink 79 Source/core/rendering/RenderTheme.cpp return blink::WebFallbackThemeEngine::StateHover; blink 81 Source/core/rendering/RenderTheme.cpp return blink::WebFallbackThemeEngine::StateNormal; blink 1106 Source/core/rendering/RenderTheme.cpp string = locale.queryString(blink::WebLocalizedString::FileButtonNoFileSelectedLabel); blink 1111 Source/core/rendering/RenderTheme.cpp return StringTruncator::rightTruncate(locale.queryString(blink::WebLocalizedString::MultipleFileUploadText, String::number(fileList->length())), width, font, StringTruncator::EnableRoundingHacks); blink 1176 Source/core/rendering/RenderTheme.cpp blink::WebFallbackThemeEngine::ExtraParams extraParams; blink 1177 Source/core/rendering/RenderTheme.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 1192 Source/core/rendering/RenderTheme.cpp blink::Platform::current()->fallbackThemeEngine()->paint(canvas, blink::WebFallbackThemeEngine::PartCheckbox, getWebFallbackThemeState(this, o), blink::WebRect(unzoomedRect), &extraParams); blink 1202 Source/core/rendering/RenderTheme.cpp IntSize size = blink::Platform::current()->fallbackThemeEngine()->getSize(blink::WebFallbackThemeEngine::PartCheckbox); blink 1218 Source/core/rendering/RenderTheme.cpp blink::WebFallbackThemeEngine::ExtraParams extraParams; blink 1219 Source/core/rendering/RenderTheme.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 1234 Source/core/rendering/RenderTheme.cpp blink::Platform::current()->fallbackThemeEngine()->paint(canvas, blink::WebFallbackThemeEngine::PartRadio, getWebFallbackThemeState(this, o), blink::WebRect(unzoomedRect), &extraParams); blink 1244 Source/core/rendering/RenderTheme.cpp IntSize size = blink::Platform::current()->fallbackThemeEngine()->getSize(blink::WebFallbackThemeEngine::PartRadio); blink 77 Source/core/rendering/RenderThemeChromiumAndroid.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartInnerSpinButton); blink 93 Source/core/rendering/RenderThemeChromiumAndroid.cpp IntSize scrollbarSize = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrollbarDownArrow); blink 62 Source/core/rendering/RenderThemeChromiumDefault.cpp static blink::WebThemeEngine::State getWebThemeState(const RenderTheme* theme, const RenderObject* o) blink 65 Source/core/rendering/RenderThemeChromiumDefault.cpp return blink::WebThemeEngine::StateDisabled; blink 67 Source/core/rendering/RenderThemeChromiumDefault.cpp return blink::WebThemeEngine::StateReadonly; blink 69 Source/core/rendering/RenderThemeChromiumDefault.cpp return blink::WebThemeEngine::StatePressed; blink 71 Source/core/rendering/RenderThemeChromiumDefault.cpp return blink::WebThemeEngine::StateFocused; blink 73 Source/core/rendering/RenderThemeChromiumDefault.cpp return blink::WebThemeEngine::StateHover; blink 75 Source/core/rendering/RenderThemeChromiumDefault.cpp return blink::WebThemeEngine::StateNormal; blink 209 Source/core/rendering/RenderThemeChromiumDefault.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartSliderThumb); blink 247 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 248 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 264 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartCheckbox, getWebThemeState(this, o), blink::WebRect(unzoomedRect), &extraParams); blink 274 Source/core/rendering/RenderThemeChromiumDefault.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartCheckbox); blink 283 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 284 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 287 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartRadio, getWebThemeState(this, o), blink::WebRect(rect), &extraParams); blink 297 Source/core/rendering/RenderThemeChromiumDefault.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartRadio); blink 306 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 307 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 313 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartButton, getWebThemeState(this, o), blink::WebRect(rect), &extraParams); blink 326 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 330 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 335 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartTextField, getWebThemeState(this, o), blink::WebRect(rect), &extraParams); blink 347 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 378 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 380 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartMenuList, getWebThemeState(this, o), blink::WebRect(rect), &extraParams); blink 392 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 412 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 414 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartMenuList, getWebThemeState(this, o), blink::WebRect(rect), &extraParams); blink 420 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 421 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 439 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartSliderTrack, getWebThemeState(this, o), blink::WebRect(unzoomedRect), &extraParams); blink 446 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 447 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 464 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartSliderThumb, getWebThemeState(this, o), blink::WebRect(unzoomedRect), &extraParams); blink 470 Source/core/rendering/RenderThemeChromiumDefault.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartInnerSpinButton); blink 478 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 479 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 483 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartInnerSpinButton, getWebThemeState(this, o), blink::WebRect(rect), &extraParams); blink 495 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 503 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::WebCanvas* canvas = i.context->canvas(); blink 504 Source/core/rendering/RenderThemeChromiumDefault.cpp blink::Platform::current()->themeEngine()->paint(canvas, blink::WebThemeEngine::PartProgressBar, getWebThemeState(this, o), blink::WebRect(rect), &extraParams); blink 182 Source/core/rendering/RenderVideo.cpp blink::WebLayer* webLayer = mediaElement()->platformLayer(); blink 139 Source/core/rendering/compositing/CompositedLayerMapping.cpp static blink::WebLayer* platformLayerForPlugin(RenderObject* renderer) blink 520 Source/core/rendering/compositing/CompositedLayerMapping.cpp if (blink::WebLayer* layer = platformLayerForPlugin(renderer)) { blink 523 Source/core/rendering/compositing/CompositedLayerMapping.cpp blink::WebLayer* layer = toHTMLFrameOwnerElement(renderer->node())->contentFrame()->remotePlatformLayer(); blink 986 Source/core/rendering/compositing/CompositedLayerMapping.cpp if (blink::WebLayer* contentLayer = context->platformLayer()) { blink 1799 Source/core/rendering/compositing/CompositedLayerMapping.cpp void CompositedLayerMapping::setBlendMode(blink::WebBlendMode blendMode) blink 1803 Source/core/rendering/compositing/CompositedLayerMapping.cpp m_graphicsLayer->setBlendMode(blink::WebBlendModeNormal); blink 189 Source/core/rendering/compositing/CompositedLayerMapping.h void setBlendMode(blink::WebBlendMode); blink 1296 Source/core/rendering/compositing/RenderLayerCompositor.cpp blink::Platform::current()->histogramEnumeration("Renderer.AcceleratedFixedRootBackground", blink 364 Source/core/rendering/style/FillLayer.cpp if (m_blendMode != blink::WebBlendModeNormal) blink 79 Source/core/rendering/style/FillLayer.h blink::WebBlendMode blendMode() const { return static_cast<blink::WebBlendMode>(m_blendMode); } blink 114 Source/core/rendering/style/FillLayer.h void setBlendMode(blink::WebBlendMode b) { m_blendMode = b; m_blendModeSet = true; } blink 185 Source/core/rendering/style/FillLayer.h static blink::WebBlendMode initialFillBlendMode(EFillLayerType) { return blink::WebBlendModeNormal; } blink 795 Source/core/rendering/style/RenderStyle.cpp blink::WebBlendMode RenderStyle::blendMode() const blink 798 Source/core/rendering/style/RenderStyle.cpp return static_cast<blink::WebBlendMode>(rareNonInheritedData->m_effectiveBlendMode); blink 799 Source/core/rendering/style/RenderStyle.cpp return blink::WebBlendModeNormal; blink 802 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setBlendMode(blink::WebBlendMode v) blink 811 Source/core/rendering/style/RenderStyle.cpp return static_cast<blink::WebBlendMode>(rareNonInheritedData->m_effectiveBlendMode) != blink::WebBlendModeNormal; blink 945 Source/core/rendering/style/RenderStyle.h blink::WebBlendMode blendMode() const; blink 946 Source/core/rendering/style/RenderStyle.h void setBlendMode(blink::WebBlendMode v); blink 1697 Source/core/rendering/style/RenderStyle.h static blink::WebBlendMode initialBlendMode() { return blink::WebBlendModeNormal; } blink 135 Source/core/rendering/svg/SVGRenderingContext.cpp m_paintInfo->context->setCompositeOperation(CompositeSourceOver, blink::WebBlendModeNormal); blink 48 Source/core/storage/StorageArea.cpp StorageArea::StorageArea(PassOwnPtr<blink::WebStorageArea> storageArea, StorageType storageType) blink 93 Source/core/storage/StorageArea.cpp blink::WebStorageArea::Result result = blink::WebStorageArea::ResultOK; blink 95 Source/core/storage/StorageArea.cpp if (result != blink::WebStorageArea::ResultOK) blink 143 Source/core/storage/StorageArea.cpp void StorageArea::dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess) blink 157 Source/core/storage/StorageArea.cpp static Page* findPageWithSessionStorageNamespace(const blink::WebStorageNamespace& sessionNamespace) blink 170 Source/core/storage/StorageArea.cpp void StorageArea::dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, const blink::WebStorageNamespace& sessionNamespace, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess) blink 184 Source/core/storage/StorageArea.cpp bool StorageArea::isEventSource(Storage* storage, blink::WebStorageArea* sourceAreaInstance) blink 34 Source/core/storage/StorageArea.h namespace blink { blink 55 Source/core/storage/StorageArea.h StorageArea(PassOwnPtr<blink::WebStorageArea>, StorageType); blink 71 Source/core/storage/StorageArea.h SecurityOrigin*, const KURL& pageURL, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess); blink 73 Source/core/storage/StorageArea.h SecurityOrigin*, const KURL& pageURL, const blink::WebStorageNamespace&, blink 74 Source/core/storage/StorageArea.h blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess); blink 79 Source/core/storage/StorageArea.h static bool isEventSource(Storage*, blink::WebStorageArea* sourceAreaInstance); blink 81 Source/core/storage/StorageArea.h OwnPtr<blink::WebStorageArea> m_storageArea; blink 38 Source/core/storage/StorageNamespace.cpp StorageNamespace::StorageNamespace(PassOwnPtr<blink::WebStorageNamespace> webStorageNamespace) blink 50 Source/core/storage/StorageNamespace.cpp static blink::WebStorageNamespace* localStorageNamespace = 0; blink 52 Source/core/storage/StorageNamespace.cpp localStorageNamespace = blink::Platform::current()->createLocalStorageNamespace(); blink 61 Source/core/storage/StorageNamespace.cpp bool StorageNamespace::isSameNamespace(const blink::WebStorageNamespace& sessionNamespace) const blink 33 Source/core/storage/StorageNamespace.h namespace blink { blink 45 Source/core/storage/StorageNamespace.h explicit StorageNamespace(PassOwnPtr<blink::WebStorageNamespace>); blink 51 Source/core/storage/StorageNamespace.h bool isSameNamespace(const blink::WebStorageNamespace& sessionNamespace) const; blink 54 Source/core/storage/StorageNamespace.h OwnPtr<blink::WebStorageNamespace> m_webStorageNamespace; blink 177 Source/core/svg/graphics/SVGImage.cpp const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) blink 208 Source/core/svg/graphics/SVGImage.cpp drawForContainer(buffer->context(), size(), 1, rect(), rect(), CompositeSourceOver, blink::WebBlendModeNormal); blink 215 Source/core/svg/graphics/SVGImage.cpp const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) blink 236 Source/core/svg/graphics/SVGImage.cpp drawForContainer(buffer->context(), containerSize, zoom, imageBufferSize, zoomedContainerRect, CompositeSourceOver, blink::WebBlendModeNormal); blink 246 Source/core/svg/graphics/SVGImage.cpp void SVGImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) blink 255 Source/core/svg/graphics/SVGImage.cpp bool compositingRequiresTransparencyLayer = compositeOp != CompositeSourceOver || blendMode != blink::WebBlendModeNormal; blink 261 Source/core/svg/graphics/SVGImage.cpp context->setCompositeOperation(CompositeSourceOver, blink::WebBlendModeNormal); blink 98 Source/core/svg/graphics/SVGImage.h virtual void draw(GraphicsContext*, const FloatRect& fromRect, const FloatRect& toRect, CompositeOperator, blink::WebBlendMode) OVERRIDE; blink 99 Source/core/svg/graphics/SVGImage.h void drawForContainer(GraphicsContext*, const FloatSize, float, const FloatRect&, const FloatRect&, CompositeOperator, blink::WebBlendMode); blink 101 Source/core/svg/graphics/SVGImage.h CompositeOperator, const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing); blink 38 Source/core/svg/graphics/SVGImageForContainer.cpp const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) blink 44 Source/core/svg/graphics/SVGImageForContainer.cpp const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) blink 55 Source/core/svg/graphics/SVGImageForContainer.h virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&, CompositeOperator, blink::WebBlendMode) OVERRIDE; blink 57 Source/core/svg/graphics/SVGImageForContainer.h virtual void drawPattern(GraphicsContext*, const FloatRect&, const FloatSize&, const FloatPoint&, CompositeOperator, const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing) OVERRIDE; blink 71 Source/core/testing/InspectorFrontendClientLocal.cpp class TaskImpl : public blink::WebThread::Task { blink 81 Source/core/testing/InspectorFrontendClientLocal.cpp blink::Platform::current()->currentThread()->postTask(taskImpl); blink 43 Source/core/testing/InternalProfilers.cpp blink::Platform::current()->startHeapProfiling(prefix); blink 48 Source/core/testing/InternalProfilers.cpp blink::Platform::current()->stopHeapProfiling(); blink 53 Source/core/testing/InternalProfilers.cpp blink::Platform::current()->dumpHeapProfiling(reason); blink 58 Source/core/testing/InternalProfilers.cpp String text = blink::Platform::current()->getHeapProfile(); blink 1351 Source/core/testing/Internals.cpp static void mergeRects(blink::WebVector<blink::WebRect>& rects) blink 1366 Source/core/testing/Internals.cpp rects[j] = blink::WebRect(); blink 1371 Source/core/testing/Internals.cpp rects[j] = blink::WebRect(); blink 1377 Source/core/testing/Internals.cpp rects[j] = blink::WebRect(); blink 1382 Source/core/testing/Internals.cpp rects[j] = blink::WebRect(); blink 1393 Source/core/testing/Internals.cpp blink::WebVector<blink::WebRect> layerRects = graphicsLayer->platformLayer()->touchEventHandlerRegion(); blink 2327 Source/core/testing/Internals.cpp OwnPtr<blink::WebGraphicsContext3DProvider> sharedProvider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 2330 Source/core/testing/Internals.cpp blink::WebGraphicsContext3D* sharedContext = sharedProvider->context3d(); blink 2461 Source/core/testing/Internals.cpp blink::WebPoint point(x, y); blink 36 Source/core/testing/UnitTestHelpers.cpp class QuitTask : public blink::WebThread::Task { blink 40 Source/core/testing/UnitTestHelpers.cpp blink::Platform::current()->currentThread()->exitRunLoop(); blink 46 Source/core/testing/UnitTestHelpers.cpp blink::Platform::current()->currentThread()->postTask(new QuitTask); blink 47 Source/core/testing/UnitTestHelpers.cpp blink::Platform::current()->currentThread()->enterRunLoop(); blink 110 Source/core/timing/PerformanceUserTiming.cpp blink::Platform::current()->histogramCustomCounts("PLT.UserTiming_Mark", static_cast<int>(startTime), 0, 600000, 100); blink 159 Source/core/timing/PerformanceUserTiming.cpp blink::Platform::current()->histogramCustomCounts("PLT.UserTiming_MeasureDuration", static_cast<int>(endTime - startTime), 0, 600000, 100); blink 68 Source/core/workers/SharedWorker.cpp OwnPtr<blink::WebMessagePortChannel> remotePort = channel->port2()->disentangle(); blink 38 Source/core/workers/SharedWorkerRepositoryClient.h namespace blink { blink 55 Source/core/workers/SharedWorkerRepositoryClient.h virtual void connect(PassRefPtrWillBeRawPtr<SharedWorker>, PassOwnPtr<blink::WebMessagePortChannel>, const KURL&, const String& name, ExceptionState&) = 0; blink 45 Source/core/workers/WorkerRunLoop.cpp class WorkerRunLoopTask : public blink::WebThread::Task { blink 176 Source/core/workers/WorkerRunLoop.cpp MessageQueueWaitResult WorkerRunLoop::run(MessageQueue<blink::WebThread::Task>& queue, WaitMode waitMode) blink 184 Source/core/workers/WorkerRunLoop.cpp OwnPtr<blink::WebThread::Task> task; blink 189 Source/core/workers/WorkerRunLoop.cpp absoluteTime = m_sharedTimer->isActive() ? m_sharedTimer->fireTime() : MessageQueue<blink::WebThread::Task>::infiniteTime(); blink 245 Source/core/workers/WorkerRunLoop.cpp OwnPtr<blink::WebThread::Task> task = m_debuggerMessageQueue.tryGetMessageIgnoringKilled(); blink 77 Source/core/workers/WorkerRunLoop.h MessageQueueWaitResult run(MessageQueue<blink::WebThread::Task>&, WaitMode); blink 83 Source/core/workers/WorkerRunLoop.h MessageQueue<blink::WebThread::Task> m_messageQueue; blink 84 Source/core/workers/WorkerRunLoop.h MessageQueue<blink::WebThread::Task> m_debuggerMessageQueue; blink 74 Source/core/workers/WorkerThread.cpp , m_shutdownEvent(adoptPtr(blink::Platform::current()->createWaitableEvent())) blink 125 Source/core/workers/WorkerThread.cpp blink::Platform::current()->didStartWorkerRunLoop(blink::WebWorkerRunLoop(&m_runLoop)); blink 38 Source/core/workers/WorkerThread.h namespace blink { blink 62 Source/core/workers/WorkerThread.h blink::WebWaitableEvent* shutdownEvent() { return m_shutdownEvent.get(); } blink 106 Source/core/workers/WorkerThread.h OwnPtr<blink::WebWaitableEvent> m_shutdownEvent; blink 736 Source/core/xml/XMLHttpRequest.cpp blink::Platform::current()->histogramEnumeration("WebCore.XHR.send.ArrayBufferOrView", XMLHttpRequestSendArrayBuffer, XMLHttpRequestSendArrayBufferOrViewMax); blink 745 Source/core/xml/XMLHttpRequest.cpp blink::Platform::current()->histogramEnumeration("WebCore.XHR.send.ArrayBufferOrView", XMLHttpRequestSendArrayBufferView, XMLHttpRequestSendArrayBufferOrViewMax); blink 39 Source/modules/crypto/AesKeyAlgorithm.cpp PassRefPtrWillBeRawPtr<AesKeyAlgorithm> AesKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) blink 54 Source/modules/crypto/AesKeyAlgorithm.cpp AesKeyAlgorithm::AesKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) blink 45 Source/modules/crypto/AesKeyAlgorithm.h static PassRefPtrWillBeRawPtr<AesKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); blink 52 Source/modules/crypto/AesKeyAlgorithm.h explicit AesKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&); blink 55 Source/modules/crypto/CryptoResultImpl.cpp void CryptoResultImpl::completeWithError(const blink::WebString& errorDetails) blink 71 Source/modules/crypto/CryptoResultImpl.cpp completeWithError(blink::WebString()); blink 74 Source/modules/crypto/CryptoResultImpl.cpp void CryptoResultImpl::completeWithBuffer(const blink::WebArrayBuffer& buffer) blink 98 Source/modules/crypto/CryptoResultImpl.cpp void CryptoResultImpl::completeWithKey(const blink::WebCryptoKey& key) blink 110 Source/modules/crypto/CryptoResultImpl.cpp void CryptoResultImpl::completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) blink 58 Source/modules/crypto/CryptoResultImpl.h virtual void completeWithError(const blink::WebString&) OVERRIDE; blink 59 Source/modules/crypto/CryptoResultImpl.h virtual void completeWithBuffer(const blink::WebArrayBuffer&) OVERRIDE; blink 61 Source/modules/crypto/CryptoResultImpl.h virtual void completeWithKey(const blink::WebCryptoKey&) OVERRIDE; blink 62 Source/modules/crypto/CryptoResultImpl.h virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) OVERRIDE; blink 39 Source/modules/crypto/HmacKeyAlgorithm.cpp PassRefPtrWillBeRawPtr<HmacKeyAlgorithm> HmacKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) blink 62 Source/modules/crypto/HmacKeyAlgorithm.cpp HmacKeyAlgorithm::HmacKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) blink 40 Source/modules/crypto/HmacKeyAlgorithm.h static PassRefPtrWillBeRawPtr<HmacKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); blink 48 Source/modules/crypto/HmacKeyAlgorithm.h explicit HmacKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&); blink 45 Source/modules/crypto/Key.cpp const char* keyTypeToString(blink::WebCryptoKeyType type) blink 48 Source/modules/crypto/Key.cpp case blink::WebCryptoKeyTypeSecret: blink 50 Source/modules/crypto/Key.cpp case blink::WebCryptoKeyTypePublic: blink 52 Source/modules/crypto/Key.cpp case blink::WebCryptoKeyTypePrivate: blink 60 Source/modules/crypto/Key.cpp blink::WebCryptoKeyUsage value; blink 67 Source/modules/crypto/Key.cpp { blink::WebCryptoKeyUsageEncrypt, "encrypt" }, blink 68 Source/modules/crypto/Key.cpp { blink::WebCryptoKeyUsageDecrypt, "decrypt" }, blink 69 Source/modules/crypto/Key.cpp { blink::WebCryptoKeyUsageSign, "sign" }, blink 70 Source/modules/crypto/Key.cpp { blink::WebCryptoKeyUsageVerify, "verify" }, blink 71 Source/modules/crypto/Key.cpp { blink::WebCryptoKeyUsageDeriveKey, "deriveKey" }, blink 72 Source/modules/crypto/Key.cpp { blink::WebCryptoKeyUsageWrapKey, "wrapKey" }, blink 73 Source/modules/crypto/Key.cpp { blink::WebCryptoKeyUsageUnwrapKey, "unwrapKey" }, blink 76 Source/modules/crypto/Key.cpp COMPILE_ASSERT(blink::EndOfWebCryptoKeyUsage == (1 << 6) + 1, update_keyUsageMappings); blink 78 Source/modules/crypto/Key.cpp const char* keyUsageToString(blink::WebCryptoKeyUsage usage) blink 88 Source/modules/crypto/Key.cpp blink::WebCryptoKeyUsageMask keyUsageStringToMask(const String& usageString) blink 97 Source/modules/crypto/Key.cpp blink::WebCryptoKeyUsageMask toKeyUsage(AlgorithmOperation operation) blink 101 Source/modules/crypto/Key.cpp return blink::WebCryptoKeyUsageEncrypt; blink 103 Source/modules/crypto/Key.cpp return blink::WebCryptoKeyUsageDecrypt; blink 105 Source/modules/crypto/Key.cpp return blink::WebCryptoKeyUsageSign; blink 107 Source/modules/crypto/Key.cpp return blink::WebCryptoKeyUsageVerify; blink 109 Source/modules/crypto/Key.cpp return blink::WebCryptoKeyUsageDeriveKey; blink 111 Source/modules/crypto/Key.cpp return blink::WebCryptoKeyUsageWrapKey; blink 113 Source/modules/crypto/Key.cpp return blink::WebCryptoKeyUsageUnwrapKey; blink 130 Source/modules/crypto/Key.cpp Key::Key(const blink::WebCryptoKey& key) blink 161 Source/modules/crypto/Key.cpp blink::WebCryptoKeyUsage usage = keyUsageMappings[i].value; blink 168 Source/modules/crypto/Key.cpp bool Key::canBeUsedForAlgorithm(const blink::WebCryptoAlgorithm& algorithm, AlgorithmOperation op, CryptoResult* result) const blink 183 Source/modules/crypto/Key.cpp bool Key::parseFormat(const String& formatString, blink::WebCryptoKeyFormat& format, CryptoResult* result) blink 187 Source/modules/crypto/Key.cpp format = blink::WebCryptoKeyFormatRaw; blink 191 Source/modules/crypto/Key.cpp format = blink::WebCryptoKeyFormatPkcs8; blink 195 Source/modules/crypto/Key.cpp format = blink::WebCryptoKeyFormatSpki; blink 199 Source/modules/crypto/Key.cpp format = blink::WebCryptoKeyFormatJwk; blink 207 Source/modules/crypto/Key.cpp bool Key::parseUsageMask(const Vector<String>& usages, blink::WebCryptoKeyUsageMask& mask, CryptoResult* result) blink 211 Source/modules/crypto/Key.cpp blink::WebCryptoKeyUsageMask usage = keyUsageStringToMask(usages[i]); blink 50 Source/modules/crypto/Key.h static PassRefPtrWillBeRawPtr<Key> create(const blink::WebCryptoKey& key) blink 62 Source/modules/crypto/Key.h const blink::WebCryptoKey& key() const { return m_key; } blink 66 Source/modules/crypto/Key.h bool canBeUsedForAlgorithm(const blink::WebCryptoAlgorithm&, AlgorithmOperation, CryptoResult*) const; blink 69 Source/modules/crypto/Key.h static bool parseFormat(const String&, blink::WebCryptoKeyFormat&, CryptoResult*); blink 70 Source/modules/crypto/Key.h static bool parseUsageMask(const Vector<String>&, blink::WebCryptoKeyUsageMask&, CryptoResult*); blink 75 Source/modules/crypto/Key.h explicit Key(const blink::WebCryptoKey&); blink 77 Source/modules/crypto/Key.h const blink::WebCryptoKey m_key; blink 47 Source/modules/crypto/KeyAlgorithm.cpp PassRefPtrWillBeRawPtr<KeyAlgorithm> KeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) blink 50 Source/modules/crypto/KeyAlgorithm.cpp case blink::WebCryptoKeyAlgorithmParamsTypeNone: blink 52 Source/modules/crypto/KeyAlgorithm.cpp case blink::WebCryptoKeyAlgorithmParamsTypeAes: blink 54 Source/modules/crypto/KeyAlgorithm.cpp case blink::WebCryptoKeyAlgorithmParamsTypeHmac: blink 56 Source/modules/crypto/KeyAlgorithm.cpp case blink::WebCryptoKeyAlgorithmParamsTypeRsa: blink 58 Source/modules/crypto/KeyAlgorithm.cpp case blink::WebCryptoKeyAlgorithmParamsTypeRsaHashed: blink 65 Source/modules/crypto/KeyAlgorithm.cpp PassRefPtrWillBeRawPtr<KeyAlgorithm> KeyAlgorithm::createHash(const blink::WebCryptoAlgorithm& hash) blink 68 Source/modules/crypto/KeyAlgorithm.cpp ASSERT(hash.paramsType() == blink::WebCryptoAlgorithmParamsTypeNone); blink 69 Source/modules/crypto/KeyAlgorithm.cpp return adoptRefWillBeNoop(new KeyAlgorithm(blink::WebCryptoKeyAlgorithm(hash.id(), nullptr))); blink 72 Source/modules/crypto/KeyAlgorithm.cpp KeyAlgorithm::KeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) blink 85 Source/modules/crypto/KeyAlgorithm.cpp return m_algorithm.paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeAes; blink 90 Source/modules/crypto/KeyAlgorithm.cpp return m_algorithm.paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeHmac; blink 95 Source/modules/crypto/KeyAlgorithm.cpp return m_algorithm.paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeRsaHashed; blink 100 Source/modules/crypto/KeyAlgorithm.cpp return m_algorithm.paramsType() == blink::WebCryptoKeyAlgorithmParamsTypeRsa; blink 47 Source/modules/crypto/KeyAlgorithm.h static PassRefPtrWillBeRawPtr<KeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); blink 48 Source/modules/crypto/KeyAlgorithm.h static PassRefPtrWillBeRawPtr<KeyAlgorithm> createHash(const blink::WebCryptoAlgorithm&); blink 61 Source/modules/crypto/KeyAlgorithm.h explicit KeyAlgorithm(const blink::WebCryptoKeyAlgorithm&); blink 63 Source/modules/crypto/KeyAlgorithm.h blink::WebCryptoKeyAlgorithm m_algorithm; blink 39 Source/modules/crypto/KeyPair.cpp PassRefPtrWillBeRawPtr<KeyPair> KeyPair::create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) blink 41 Source/modules/crypto/KeyPair.cpp ASSERT(publicKey.type() == blink::WebCryptoKeyTypePublic); blink 42 Source/modules/crypto/KeyPair.cpp ASSERT(privateKey.type() == blink::WebCryptoKeyTypePrivate); blink 40 Source/modules/crypto/KeyPair.h namespace blink { class WebCryptoKey; } blink 48 Source/modules/crypto/KeyPair.h static PassRefPtrWillBeRawPtr<KeyPair> create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey); blink 56 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithmId algorithmId; blink 64 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithmId algorithmId; blink 66 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithmParamsType params; blink 74 Source/modules/crypto/NormalizeAlgorithm.cpp {"HMAC", 4, blink::WebCryptoAlgorithmIdHmac}, blink 75 Source/modules/crypto/NormalizeAlgorithm.cpp {"SHA-1", 5, blink::WebCryptoAlgorithmIdSha1}, blink 76 Source/modules/crypto/NormalizeAlgorithm.cpp {"AES-KW", 6, blink::WebCryptoAlgorithmIdAesKw}, blink 77 Source/modules/crypto/NormalizeAlgorithm.cpp {"SHA-512", 7, blink::WebCryptoAlgorithmIdSha512}, blink 78 Source/modules/crypto/NormalizeAlgorithm.cpp {"SHA-384", 7, blink::WebCryptoAlgorithmIdSha384}, blink 79 Source/modules/crypto/NormalizeAlgorithm.cpp {"SHA-256", 7, blink::WebCryptoAlgorithmIdSha256}, blink 80 Source/modules/crypto/NormalizeAlgorithm.cpp {"AES-CBC", 7, blink::WebCryptoAlgorithmIdAesCbc}, blink 81 Source/modules/crypto/NormalizeAlgorithm.cpp {"AES-GCM", 7, blink::WebCryptoAlgorithmIdAesGcm}, blink 82 Source/modules/crypto/NormalizeAlgorithm.cpp {"AES-CTR", 7, blink::WebCryptoAlgorithmIdAesCtr}, blink 83 Source/modules/crypto/NormalizeAlgorithm.cpp {"RSAES-PKCS1-V1_5", 16, blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5}, blink 84 Source/modules/crypto/NormalizeAlgorithm.cpp {"RSASSA-PKCS1-V1_5", 17, blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5}, blink 91 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCbc, Encrypt, blink::WebCryptoAlgorithmParamsTypeAesCbcParams}, blink 92 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCbc, Decrypt, blink::WebCryptoAlgorithmParamsTypeAesCbcParams}, blink 93 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCbc, GenerateKey, blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams}, blink 94 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCbc, ImportKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 95 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCbc, WrapKey, blink::WebCryptoAlgorithmParamsTypeAesCbcParams}, blink 96 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCbc, UnwrapKey, blink::WebCryptoAlgorithmParamsTypeAesCbcParams}, blink 99 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdHmac, Sign, blink::WebCryptoAlgorithmParamsTypeNone}, blink 100 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdHmac, Verify, blink::WebCryptoAlgorithmParamsTypeNone}, blink 101 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdHmac, GenerateKey, blink::WebCryptoAlgorithmParamsTypeHmacKeyGenParams}, blink 102 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdHmac, ImportKey, blink::WebCryptoAlgorithmParamsTypeHmacImportParams}, blink 105 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5, Sign, blink::WebCryptoAlgorithmParamsTypeNone}, blink 106 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5, Verify, blink::WebCryptoAlgorithmParamsTypeNone}, blink 107 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5, GenerateKey, blink::WebCryptoAlgorithmParamsTypeRsaHashedKeyGenParams}, blink 108 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5, ImportKey, blink::WebCryptoAlgorithmParamsTypeRsaHashedImportParams}, blink 111 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5, Encrypt, blink::WebCryptoAlgorithmParamsTypeNone}, blink 112 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5, Decrypt, blink::WebCryptoAlgorithmParamsTypeNone}, blink 113 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5, GenerateKey, blink::WebCryptoAlgorithmParamsTypeRsaKeyGenParams}, blink 114 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5, ImportKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 115 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5, WrapKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 116 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5, UnwrapKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 119 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdSha1, Digest, blink::WebCryptoAlgorithmParamsTypeNone}, blink 120 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdSha256, Digest, blink::WebCryptoAlgorithmParamsTypeNone}, blink 121 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdSha384, Digest, blink::WebCryptoAlgorithmParamsTypeNone}, blink 122 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdSha512, Digest, blink::WebCryptoAlgorithmParamsTypeNone}, blink 125 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesGcm, Encrypt, blink::WebCryptoAlgorithmParamsTypeAesGcmParams}, blink 126 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesGcm, Decrypt, blink::WebCryptoAlgorithmParamsTypeAesGcmParams}, blink 127 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesGcm, GenerateKey, blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams}, blink 128 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesGcm, ImportKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 129 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesGcm, WrapKey, blink::WebCryptoAlgorithmParamsTypeAesGcmParams}, blink 130 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesGcm, UnwrapKey, blink::WebCryptoAlgorithmParamsTypeAesGcmParams}, blink 133 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCtr, Encrypt, blink::WebCryptoAlgorithmParamsTypeAesCtrParams}, blink 134 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCtr, Decrypt, blink::WebCryptoAlgorithmParamsTypeAesCtrParams}, blink 135 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCtr, GenerateKey, blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams}, blink 136 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCtr, ImportKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 137 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCtr, WrapKey, blink::WebCryptoAlgorithmParamsTypeAesCtrParams}, blink 138 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesCtr, UnwrapKey, blink::WebCryptoAlgorithmParamsTypeAesCtrParams}, blink 141 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesKw, GenerateKey, blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams}, blink 142 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesKw, ImportKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 143 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesKw, WrapKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 144 Source/modules/crypto/NormalizeAlgorithm.cpp {blink::WebCryptoAlgorithmIdAesKw, UnwrapKey, blink::WebCryptoAlgorithmParamsTypeNone}, blink 242 Source/modules/crypto/NormalizeAlgorithm.cpp bool lookupAlgorithmIdByName(const String& algorithmName, blink::WebCryptoAlgorithmId& id) blink 265 Source/modules/crypto/NormalizeAlgorithm.cpp bool lookupAlgorithmParamsType(blink::WebCryptoAlgorithmId id, AlgorithmOperation op, blink::WebCryptoAlgorithmParamsType& paramsType) blink 485 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAesCbcParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 496 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoAesCbcParams(static_cast<unsigned char*>(iv->baseAddress()), iv->byteLength())); blink 505 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAesKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 511 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoAesKeyGenParams(length)); blink 515 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAlgorithm(const Dictionary&, AlgorithmOperation, blink::WebCryptoAlgorithm&, ErrorContext, String&); blink 517 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseHash(const Dictionary& raw, blink::WebCryptoAlgorithm& hash, ErrorContext context, String& errorDetails) blink 534 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseHmacImportParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 536 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithm hash; blink 540 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoHmacImportParams(hash)); blink 553 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseHmacKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 555 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithm hash; blink 564 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoHmacKeyGenParams(hash, hasLength, length)); blink 573 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseRsaHashedImportParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 575 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithm hash; blink 579 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoRsaHashedImportParams(hash)); blink 600 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseRsaKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 607 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoRsaKeyGenParams(modulusLength, static_cast<const unsigned char*>(publicExponent->baseAddress()), publicExponent->byteLength())); blink 616 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseRsaHashedKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 623 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithm hash; blink 627 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoRsaHashedKeyGenParams(hash, modulusLength, static_cast<const unsigned char*>(publicExponent->baseAddress()), publicExponent->byteLength())); blink 637 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAesCtrParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 647 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoAesCtrParams(length, static_cast<const unsigned char*>(counter->baseAddress()), counter->byteLength())); blink 658 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAesGcmParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ErrorContext& context, String& errorDetails) blink 680 Source/modules/crypto/NormalizeAlgorithm.cpp params = adoptPtr(new blink::WebCryptoAesGcmParams(ivStart, ivLength, hasAdditionalData, additionalDataStart, additionalDataLength, hasTagLength, tagLength)); blink 684 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAlgorithmParams(const Dictionary& raw, blink::WebCryptoAlgorithmParamsType type, OwnPtr<blink::WebCryptoAlgorithmParams>& params, ErrorContext& context, String& errorDetails) blink 687 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeNone: blink 689 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeAesCbcParams: blink 692 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams: blink 695 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeHmacImportParams: blink 698 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeHmacKeyGenParams: blink 701 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeRsaHashedKeyGenParams: blink 704 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeRsaHashedImportParams: blink 707 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeRsaKeyGenParams: blink 710 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeAesCtrParams: blink 713 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeAesGcmParams: blink 716 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmParamsTypeRsaOaepParams: blink 725 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAlgorithm(const Dictionary& raw, AlgorithmOperation op, blink::WebCryptoAlgorithm& algorithm, ErrorContext context, String& errorDetails) blink 740 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithmId algorithmId; blink 748 Source/modules/crypto/NormalizeAlgorithm.cpp blink::WebCryptoAlgorithmParamsType paramsType; blink 754 Source/modules/crypto/NormalizeAlgorithm.cpp OwnPtr<blink::WebCryptoAlgorithmParams> params; blink 758 Source/modules/crypto/NormalizeAlgorithm.cpp algorithm = blink::WebCryptoAlgorithm(algorithmId, params.release()); blink 764 Source/modules/crypto/NormalizeAlgorithm.cpp bool parseAlgorithm(const Dictionary& raw, AlgorithmOperation op, blink::WebCryptoAlgorithm& algorithm, CryptoResult* result) blink 774 Source/modules/crypto/NormalizeAlgorithm.cpp const char* algorithmIdToName(blink::WebCryptoAlgorithmId id) blink 777 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdAesCbc: blink 779 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdAesCtr: blink 781 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdAesGcm: blink 783 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdHmac: blink 785 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5: blink 787 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5: blink 789 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdSha1: blink 791 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdSha256: blink 793 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdSha384: blink 795 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdSha512: blink 797 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdAesKw: blink 799 Source/modules/crypto/NormalizeAlgorithm.cpp case blink::WebCryptoAlgorithmIdRsaOaep: blink 38 Source/modules/crypto/NormalizeAlgorithm.h namespace blink { class WebCryptoAlgorithm; } blink 71 Source/modules/crypto/NormalizeAlgorithm.h bool parseAlgorithm(const Dictionary&, AlgorithmOperation, blink::WebCryptoAlgorithm&, CryptoResult*) WARN_UNUSED_RETURN; blink 75 Source/modules/crypto/NormalizeAlgorithm.h const char* algorithmIdToName(blink::WebCryptoAlgorithmId); blink 39 Source/modules/crypto/RsaHashedKeyAlgorithm.cpp PassRefPtrWillBeRawPtr<RsaHashedKeyAlgorithm> RsaHashedKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) blink 57 Source/modules/crypto/RsaHashedKeyAlgorithm.cpp RsaHashedKeyAlgorithm::RsaHashedKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) blink 40 Source/modules/crypto/RsaHashedKeyAlgorithm.h static PassRefPtrWillBeRawPtr<RsaHashedKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); blink 47 Source/modules/crypto/RsaHashedKeyAlgorithm.h explicit RsaHashedKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&); blink 45 Source/modules/crypto/RsaKeyAlgorithm.cpp PassRefPtrWillBeRawPtr<RsaKeyAlgorithm> RsaKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) blink 58 Source/modules/crypto/RsaKeyAlgorithm.cpp const blink::WebVector<unsigned char>& exponent = m_algorithm.rsaParams()->publicExponent(); blink 69 Source/modules/crypto/RsaKeyAlgorithm.cpp RsaKeyAlgorithm::RsaKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) blink 42 Source/modules/crypto/RsaKeyAlgorithm.h static PassRefPtrWillBeRawPtr<RsaKeyAlgorithm> create(const blink::WebCryptoKeyAlgorithm&); blink 50 Source/modules/crypto/RsaKeyAlgorithm.h explicit RsaKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&); blink 48 Source/modules/crypto/SubtleCrypto.cpp bool parseAlgorithm(const Dictionary& rawAlgorithm, AlgorithmOperation operationType, blink::WebCryptoAlgorithm &algorithm, ExceptionState& exceptionState, CryptoResult* result) blink 79 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoAlgorithm algorithm; blink 91 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->encrypt(algorithm, key->key(), data, dataSize, result->result()); blink 94 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->decrypt(algorithm, key->key(), data, dataSize, result->result()); blink 97 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->sign(algorithm, key->key(), data, dataSize, result->result()); blink 100 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->verifySignature(algorithm, key->key(), reinterpret_cast<const unsigned char*>(signature->baseAddress()), signature->byteLength(), data, dataSize, result->result()); blink 103 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->digest(algorithm, data, dataSize, result->result()); blink 150 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoKeyUsageMask keyUsages; blink 154 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoAlgorithm algorithm; blink 158 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->generateKey(algorithm, extractable, keyUsages, result->result()); blink 172 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoKeyFormat format; blink 176 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoKeyUsageMask keyUsages; blink 180 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoAlgorithm algorithm; blink 186 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->importKey(format, keyDataBytes, keyData->byteLength(), algorithm, extractable, keyUsages, result->result()); blink 200 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoKeyFormat format; blink 209 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->exportKey(format, key->key(), result->result()); blink 228 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoKeyFormat format; blink 232 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoAlgorithm wrapAlgorithm; blink 244 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->wrapKey(format, key->key(), wrappingKey->key(), wrapAlgorithm, result->result()); blink 263 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoKeyFormat format; blink 267 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoKeyUsageMask keyUsages; blink 271 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoAlgorithm unwrapAlgorithm; blink 275 Source/modules/crypto/SubtleCrypto.cpp blink::WebCryptoAlgorithm unwrappedKeyAlgorithm; blink 285 Source/modules/crypto/SubtleCrypto.cpp blink::Platform::current()->crypto()->unwrapKey(format, wrappedKeyData, wrappedKeyDataSize, unwrappingKey->key(), unwrapAlgorithm, unwrappedKeyAlgorithm, extractable, keyUsages, result->result()); blink 80 Source/modules/device_orientation/DeviceMotionData.cpp PassRefPtrWillBeRawPtr<DeviceMotionData> DeviceMotionData::create(const blink::WebDeviceMotionData& data) blink 34 Source/modules/device_orientation/DeviceMotionData.h namespace blink { blink 100 Source/modules/device_orientation/DeviceMotionData.h static PassRefPtrWillBeRawPtr<DeviceMotionData> create(const blink::WebDeviceMotionData&); blink 67 Source/modules/device_orientation/DeviceMotionDispatcher.cpp blink::Platform::current()->setDeviceMotionListener(this); blink 72 Source/modules/device_orientation/DeviceMotionDispatcher.cpp blink::Platform::current()->setDeviceMotionListener(0); blink 76 Source/modules/device_orientation/DeviceMotionDispatcher.cpp void DeviceMotionDispatcher::didChangeDeviceMotion(const blink::WebDeviceMotionData& motion) blink 39 Source/modules/device_orientation/DeviceMotionDispatcher.h namespace blink { blink 50 Source/modules/device_orientation/DeviceMotionDispatcher.h class DeviceMotionDispatcher FINAL : public DeviceSensorEventDispatcher, public blink::WebDeviceMotionListener { blink 59 Source/modules/device_orientation/DeviceMotionDispatcher.h virtual void didChangeDeviceMotion(const blink::WebDeviceMotionData&) OVERRIDE; blink 42 Source/modules/device_orientation/DeviceOrientationData.cpp PassRefPtrWillBeRawPtr<DeviceOrientationData> DeviceOrientationData::create(const blink::WebDeviceOrientationData& data) blink 33 Source/modules/device_orientation/DeviceOrientationData.h namespace blink { blink 43 Source/modules/device_orientation/DeviceOrientationData.h static PassRefPtrWillBeRawPtr<DeviceOrientationData> create(const blink::WebDeviceOrientationData&); blink 67 Source/modules/device_orientation/DeviceOrientationDispatcher.cpp blink::Platform::current()->setDeviceOrientationListener(this); blink 72 Source/modules/device_orientation/DeviceOrientationDispatcher.cpp blink::Platform::current()->setDeviceOrientationListener(0); blink 76 Source/modules/device_orientation/DeviceOrientationDispatcher.cpp void DeviceOrientationDispatcher::didChangeDeviceOrientation(const blink::WebDeviceOrientationData& motion) blink 39 Source/modules/device_orientation/DeviceOrientationDispatcher.h namespace blink { blink 50 Source/modules/device_orientation/DeviceOrientationDispatcher.h class DeviceOrientationDispatcher : public DeviceSensorEventDispatcher, public blink::WebDeviceOrientationListener { blink 59 Source/modules/device_orientation/DeviceOrientationDispatcher.h virtual void didChangeDeviceOrientation(const blink::WebDeviceOrientationData&) OVERRIDE; blink 20 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp static void throwExceptionIfMediaKeyExceptionOccurred(const String& keySystem, const String& sessionId, blink::WebMediaPlayer::MediaKeyException exception, ExceptionState& exceptionState) blink 23 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayer::MediaKeyExceptionNoError: blink 25 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayer::MediaKeyExceptionInvalidPlayerState: blink 28 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayer::MediaKeyExceptionKeySystemNotSupported: blink 31 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayer::MediaKeyExceptionInvalidAccess: blink 74 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp blink::WebContentDecryptionModule* HTMLMediaElementEncryptedMedia::contentDecryptionModule() blink 144 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::generateKeyRequest(blink::WebMediaPlayer* webMediaPlayer, const String& keySystem, PassRefPtr<Uint8Array> initData, ExceptionState& exceptionState) blink 168 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp blink::WebMediaPlayer::MediaKeyException result = webMediaPlayer->generateKeyRequest(keySystem, initDataPointer, initDataLength); blink 182 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::addKey(blink::WebMediaPlayer* webMediaPlayer, const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState& exceptionState) blink 216 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp blink::WebMediaPlayer::MediaKeyException result = webMediaPlayer->addKey(keySystem, key->data(), key->length(), initDataPointer, initDataLength, sessionId); blink 230 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::cancelKeyRequest(blink::WebMediaPlayer* webMediaPlayer, const String& keySystem, const String& sessionId, ExceptionState& exceptionState) blink 247 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp blink::WebMediaPlayer::MediaKeyException result = webMediaPlayer->cancelKeyRequest(keySystem, sessionId); blink 266 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::keyError(HTMLMediaElement& element, const String& keySystem, const String& sessionId, blink::WebMediaPlayerClient::MediaKeyErrorCode errorCode, unsigned short systemCode) blink 272 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayerClient::MediaKeyErrorCodeUnknown: blink 275 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayerClient::MediaKeyErrorCodeClient: blink 278 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayerClient::MediaKeyErrorCodeService: blink 281 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayerClient::MediaKeyErrorCodeOutput: blink 284 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayerClient::MediaKeyErrorCodeHardwareChange: blink 287 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp case blink::WebMediaPlayerClient::MediaKeyErrorCodeDomain: blink 305 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp void HTMLMediaElementEncryptedMedia::keyMessage(HTMLMediaElement& element, const String& keySystem, const String& sessionId, const unsigned char* message, unsigned messageLength, const blink::WebURL& defaultURL) blink 347 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp blink::WebContentDecryptionModule* HTMLMediaElementEncryptedMedia::contentDecryptionModule(HTMLMediaElement& element) blink 41 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h static void keyError(HTMLMediaElement&, const String& keySystem, const String& sessionId, blink::WebMediaPlayerClient::MediaKeyErrorCode, unsigned short systemCode); blink 42 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h static void keyMessage(HTMLMediaElement&, const String& keySystem, const String& sessionId, const unsigned char* message, unsigned messageLength, const blink::WebURL& defaultURL); blink 45 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h static blink::WebContentDecryptionModule* contentDecryptionModule(HTMLMediaElement&); blink 53 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h void generateKeyRequest(blink::WebMediaPlayer*, const String& keySystem, PassRefPtr<Uint8Array> initData, ExceptionState&); blink 54 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h void addKey(blink::WebMediaPlayer*, const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState&); blink 55 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h void cancelKeyRequest(blink::WebMediaPlayer*, const String& keySystem, const String& sessionId, ExceptionState&); blink 71 Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h blink::WebContentDecryptionModule* contentDecryptionModule(); blink 64 Source/modules/encryptedmedia/MediaKeySession.cpp PassRefPtrWillBeRawPtr<MediaKeySession> MediaKeySession::create(ExecutionContext* context, blink::WebContentDecryptionModule* cdm, WeakPtr<MediaKeys> keys) blink 71 Source/modules/encryptedmedia/MediaKeySession.cpp MediaKeySession::MediaKeySession(ExecutionContext* context, blink::WebContentDecryptionModule* cdm, WeakPtr<MediaKeys> keys) blink 178 Source/modules/encryptedmedia/MediaKeySession.cpp void MediaKeySession::message(const unsigned char* message, size_t messageLength, const blink::WebURL& destinationURL) blink 42 Source/modules/encryptedmedia/MediaKeySession.h namespace blink { blink 68 Source/modules/encryptedmedia/MediaKeySession.h , private blink::WebContentDecryptionModuleSession::Client { blink 71 Source/modules/encryptedmedia/MediaKeySession.h static PassRefPtrWillBeRawPtr<MediaKeySession> create(ExecutionContext*, blink::WebContentDecryptionModule*, WeakPtr<MediaKeys>); blink 114 Source/modules/encryptedmedia/MediaKeySession.h MediaKeySession(ExecutionContext*, blink::WebContentDecryptionModule*, WeakPtr<MediaKeys>); blink 118 Source/modules/encryptedmedia/MediaKeySession.h virtual void message(const unsigned char* message, size_t messageLength, const blink::WebURL& destinationURL) OVERRIDE; blink 126 Source/modules/encryptedmedia/MediaKeySession.h OwnPtr<blink::WebContentDecryptionModuleSession> m_session; blink 77 Source/modules/encryptedmedia/MediaKeys.cpp OwnPtr<blink::WebContentDecryptionModule> cdm = controller->createContentDecryptionModule(context, keySystem); blink 89 Source/modules/encryptedmedia/MediaKeys.cpp MediaKeys::MediaKeys(ExecutionContext* context, const String& keySystem, PassOwnPtr<blink::WebContentDecryptionModule> cdm) blink 178 Source/modules/encryptedmedia/MediaKeys.cpp blink::WebContentDecryptionModule* MediaKeys::contentDecryptionModule() blink 44 Source/modules/encryptedmedia/MediaKeys.h namespace blink { blink 68 Source/modules/encryptedmedia/MediaKeys.h blink::WebContentDecryptionModule* contentDecryptionModule(); blink 76 Source/modules/encryptedmedia/MediaKeys.h MediaKeys(ExecutionContext*, const String& keySystem, PassOwnPtr<blink::WebContentDecryptionModule>); blink 81 Source/modules/encryptedmedia/MediaKeys.h OwnPtr<blink::WebContentDecryptionModule> m_cdm; blink 11 Source/modules/encryptedmedia/MediaKeysClient.h namespace blink { blink 22 Source/modules/encryptedmedia/MediaKeysClient.h virtual PassOwnPtr<blink::WebContentDecryptionModule> createContentDecryptionModule(ExecutionContext*, const String& keySystem) = 0; blink 27 Source/modules/encryptedmedia/MediaKeysController.cpp PassOwnPtr<blink::WebContentDecryptionModule> MediaKeysController::createContentDecryptionModule(ExecutionContext* context, const String& keySystem) blink 11 Source/modules/encryptedmedia/MediaKeysController.h namespace blink { blink 24 Source/modules/encryptedmedia/MediaKeysController.h PassOwnPtr<blink::WebContentDecryptionModule> createContentDecryptionModule(ExecutionContext*, const String& keySystem); blink 74 Source/modules/filesystem/DOMFileSystemBase.cpp blink::WebFileSystem* DOMFileSystemBase::fileSystem() const blink 76 Source/modules/filesystem/DOMFileSystemBase.cpp return blink::Platform::current()->fileSystem(); blink 42 Source/modules/filesystem/DOMFileSystemBase.h namespace blink { blink 89 Source/modules/filesystem/DOMFileSystemBase.h blink::WebFileSystem* fileSystem() const; blink 228 Source/modules/filesystem/FileSystemCallbacks.cpp void FileWriterBaseCallbacks::didCreateFileWriter(PassOwnPtr<blink::WebFileWriter> fileWriter, long long length) blink 135 Source/modules/filesystem/FileSystemCallbacks.h virtual void didCreateFileWriter(PassOwnPtr<blink::WebFileWriter>, long long length) OVERRIDE; blink 227 Source/modules/filesystem/FileWriter.cpp void FileWriter::didFail(blink::WebFileError code) blink 51 Source/modules/filesystem/FileWriter.h class FileWriter FINAL : public FileWriterBase, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData, public blink::WebFileWriterClient { blink 72 Source/modules/filesystem/FileWriter.h virtual void didFail(blink::WebFileError) OVERRIDE; blink 46 Source/modules/filesystem/FileWriterBase.cpp void FileWriterBase::initialize(PassOwnPtr<blink::WebFileWriter> writer, long long length) blink 39 Source/modules/filesystem/FileWriterBase.h namespace blink { class WebFileWriter; } blink 46 Source/modules/filesystem/FileWriterBase.h void initialize(PassOwnPtr<blink::WebFileWriter>, long long length); blink 62 Source/modules/filesystem/FileWriterBase.h blink::WebFileWriter* writer() blink 82 Source/modules/filesystem/FileWriterBase.h OwnPtr<blink::WebFileWriter> m_writer; blink 111 Source/modules/filesystem/FileWriterSync.cpp void FileWriterSync::didFail(blink::WebFileError error) blink 46 Source/modules/filesystem/FileWriterSync.h class FileWriterSync FINAL : public FileWriterBase, public ScriptWrappable, public blink::WebFileWriterClient { blink 62 Source/modules/filesystem/FileWriterSync.h virtual void didFail(blink::WebFileError) OVERRIDE; blink 73 Source/modules/filesystem/LocalFileSystem.cpp blink::Platform::current()->fileSystem()->resolveURL(fileSystemURL, callbacks); blink 83 Source/modules/filesystem/LocalFileSystem.cpp blink::Platform::current()->fileSystem()->openFileSystem(storagePartition, static_cast<blink::WebFileSystemType>(type), callbacks); blink 96 Source/modules/filesystem/LocalFileSystem.cpp blink::Platform::current()->fileSystem()->deleteFileSystem(storagePartition, static_cast<blink::WebFileSystemType>(type), callbacks); blink 40 Source/modules/gamepad/Gamepad.cpp void Gamepad::setButtons(unsigned count, const blink::WebGamepadButton* data) blink 47 Source/modules/gamepad/Gamepad.h void setButtons(unsigned count, const blink::WebGamepadButton* data); blink 30 Source/modules/gamepad/GamepadDispatcher.cpp void GamepadDispatcher::sampleGamepads(blink::WebGamepads& gamepads) blink 33 Source/modules/gamepad/GamepadDispatcher.cpp blink::Platform::current()->sampleGamepads(gamepads); blink 44 Source/modules/gamepad/GamepadDispatcher.cpp void GamepadDispatcher::didConnectGamepad(unsigned index, const blink::WebGamepad& gamepad) blink 49 Source/modules/gamepad/GamepadDispatcher.cpp void GamepadDispatcher::didDisconnectGamepad(unsigned index, const blink::WebGamepad& gamepad) blink 54 Source/modules/gamepad/GamepadDispatcher.cpp void GamepadDispatcher::dispatchDidConnectOrDisconnectGamepad(unsigned index, const blink::WebGamepad& gamepad, bool connected) blink 72 Source/modules/gamepad/GamepadDispatcher.cpp blink::Platform::current()->setGamepadListener(this); blink 77 Source/modules/gamepad/GamepadDispatcher.cpp blink::Platform::current()->setGamepadListener(0); blink 11 Source/modules/gamepad/GamepadDispatcher.h namespace blink { blink 20 Source/modules/gamepad/GamepadDispatcher.h class GamepadDispatcher : public DeviceSensorEventDispatcher, public blink::WebGamepadListener { blink 26 Source/modules/gamepad/GamepadDispatcher.h void sampleGamepads(blink::WebGamepads&); blink 32 Source/modules/gamepad/GamepadDispatcher.h virtual void didConnectGamepad(unsigned index, const blink::WebGamepad&) OVERRIDE; blink 33 Source/modules/gamepad/GamepadDispatcher.h virtual void didDisconnectGamepad(unsigned index, const blink::WebGamepad&) OVERRIDE; blink 34 Source/modules/gamepad/GamepadDispatcher.h void dispatchDidConnectOrDisconnectGamepad(unsigned index, const blink::WebGamepad&, bool connected); blink 42 Source/modules/gamepad/GamepadList.cpp if (index >= blink::WebGamepads::itemsLengthCap) blink 54 Source/modules/gamepad/GamepadList.cpp for (unsigned index = 0; index < blink::WebGamepads::itemsLengthCap; index++) { blink 49 Source/modules/gamepad/GamepadList.h unsigned length() const { return blink::WebGamepads::itemsLengthCap; } blink 55 Source/modules/gamepad/GamepadList.h RefPtrWillBeMember<Gamepad> m_items[blink::WebGamepads::itemsLengthCap]; blink 43 Source/modules/gamepad/NavigatorGamepad.cpp static void sampleGamepad(unsigned index, T& gamepad, const blink::WebGamepad& webGamepad) blink 57 Source/modules/gamepad/NavigatorGamepad.cpp blink::WebGamepads gamepads; blink 61 Source/modules/gamepad/NavigatorGamepad.cpp for (unsigned i = 0; i < blink::WebGamepads::itemsLengthCap; ++i) { blink 62 Source/modules/gamepad/NavigatorGamepad.cpp blink::WebGamepad& webGamepad = gamepads.items[i]; blink 127 Source/modules/gamepad/NavigatorGamepad.cpp void NavigatorGamepad::didConnectOrDisconnectGamepad(unsigned index, const blink::WebGamepad& webGamepad, bool connected) blink 129 Source/modules/gamepad/NavigatorGamepad.cpp ASSERT(index < blink::WebGamepads::itemsLengthCap); blink 36 Source/modules/gamepad/NavigatorGamepad.h namespace blink { blink 62 Source/modules/gamepad/NavigatorGamepad.h void didConnectOrDisconnectGamepad(unsigned index, const blink::WebGamepad&, bool connected); blink 19 Source/modules/gamepad/WebKitGamepad.cpp void WebKitGamepad::setButtons(unsigned count, const blink::WebGamepadButton* data) blink 27 Source/modules/gamepad/WebKitGamepad.h void setButtons(unsigned count, const blink::WebGamepadButton* data); blink 21 Source/modules/gamepad/WebKitGamepadList.cpp if (index >= blink::WebGamepads::itemsLengthCap) blink 33 Source/modules/gamepad/WebKitGamepadList.cpp for (unsigned index = 0; index < blink::WebGamepads::itemsLengthCap; index++) { blink 28 Source/modules/gamepad/WebKitGamepadList.h unsigned length() const { return blink::WebGamepads::itemsLengthCap; } blink 34 Source/modules/gamepad/WebKitGamepadList.h RefPtrWillBeMember<WebKitGamepad> m_items[blink::WebGamepads::itemsLengthCap]; blink 44 Source/modules/indexeddb/IDBCursor.cpp using blink::WebIDBCursor; blink 45 Source/modules/indexeddb/IDBCursor.cpp using blink::WebIDBDatabase; blink 49 Source/modules/indexeddb/IDBCursor.cpp PassRefPtr<IDBCursor> IDBCursor::create(PassOwnPtr<blink::WebIDBCursor> backend, WebIDBCursor::Direction direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) blink 78 Source/modules/indexeddb/IDBCursor.cpp IDBCursor::IDBCursor(PassOwnPtr<blink::WebIDBCursor> backend, WebIDBCursor::Direction direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) blink 55 Source/modules/indexeddb/IDBCursor.h static blink::WebIDBCursor::Direction stringToDirection(const String& modeString, ExceptionState&); blink 58 Source/modules/indexeddb/IDBCursor.h static PassRefPtr<IDBCursor> create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursor::Direction, IDBRequest*, IDBAny* source, IDBTransaction*); blink 96 Source/modules/indexeddb/IDBCursor.h IDBCursor(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursor::Direction, IDBRequest*, IDBAny* source, IDBTransaction*); blink 104 Source/modules/indexeddb/IDBCursor.h OwnPtr<blink::WebIDBCursor> m_backend; blink 106 Source/modules/indexeddb/IDBCursor.h const blink::WebIDBCursor::Direction m_direction; blink 31 Source/modules/indexeddb/IDBCursorWithValue.cpp using blink::WebIDBCursor; blink 35 Source/modules/indexeddb/IDBCursorWithValue.cpp PassRefPtr<IDBCursorWithValue> IDBCursorWithValue::create(PassOwnPtr<blink::WebIDBCursor> backend, WebIDBCursor::Direction direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) blink 40 Source/modules/indexeddb/IDBCursorWithValue.cpp IDBCursorWithValue::IDBCursorWithValue(PassOwnPtr<blink::WebIDBCursor> backend, WebIDBCursor::Direction direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) blink 42 Source/modules/indexeddb/IDBCursorWithValue.h static PassRefPtr<IDBCursorWithValue> create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursor::Direction, IDBRequest*, IDBAny* source, IDBTransaction*); blink 52 Source/modules/indexeddb/IDBCursorWithValue.h IDBCursorWithValue(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursor::Direction, IDBRequest*, IDBAny* source, IDBTransaction*); blink 50 Source/modules/indexeddb/IDBDatabase.cpp using blink::WebIDBDatabase; blink 196 Source/modules/indexeddb/IDBDatabase.cpp blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBCreateObjectStoreCall, IDBMethodsMax); blink 240 Source/modules/indexeddb/IDBDatabase.cpp blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBDeleteObjectStoreCall, IDBMethodsMax); blink 268 Source/modules/indexeddb/IDBDatabase.cpp blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBTransactionCall, IDBMethodsMax); blink 274 Source/modules/indexeddb/IDBDatabase.cpp blink::WebIDBDatabase::TransactionMode mode = IDBTransaction::stringToMode(modeString, exceptionState); blink 58 Source/modules/indexeddb/IDBDatabase.h static PassRefPtr<IDBDatabase> create(ExecutionContext*, PassOwnPtr<blink::WebIDBDatabase>, PassRefPtr<IDBDatabaseCallbacks>); blink 112 Source/modules/indexeddb/IDBDatabase.h blink::WebIDBDatabase* backend() const { return m_backend.get(); } blink 132 Source/modules/indexeddb/IDBDatabase.h IDBDatabase(ExecutionContext*, PassOwnPtr<blink::WebIDBDatabase>, PassRefPtr<IDBDatabaseCallbacks>); blink 137 Source/modules/indexeddb/IDBDatabase.h OwnPtr<blink::WebIDBDatabase> m_backend; blink 92 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->idbFactory()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin())); blink 108 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBOpenCall, IDBMethodsMax); blink 130 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->idbFactory()->open(name, version, transactionId, WebIDBCallbacksImpl::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks.release()).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin())); blink 143 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBDeleteDatabaseCall, IDBMethodsMax); blink 162 Source/modules/indexeddb/IDBFactory.cpp blink::Platform::current()->idbFactory()->deleteDatabase(name, WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin())); blink 41 Source/modules/indexeddb/IDBIndex.cpp using blink::WebIDBCallbacks; blink 42 Source/modules/indexeddb/IDBIndex.cpp using blink::WebIDBCursor; blink 43 Source/modules/indexeddb/IDBIndex.cpp using blink::WebIDBDatabase; blink 70 Source/modules/indexeddb/IDBIndex.h PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, blink::WebIDBCursor::Direction); blink 72 Source/modules/indexeddb/IDBIndex.h blink::WebIDBDatabase* backendDB() const; blink 47 Source/modules/indexeddb/IDBObjectStore.cpp using blink::WebIDBCallbacks; blink 48 Source/modules/indexeddb/IDBObjectStore.cpp using blink::WebIDBCursor; blink 49 Source/modules/indexeddb/IDBObjectStore.cpp using blink::WebIDBDatabase; blink 233 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->put(m_transaction->id(), id(), blink::WebData(valueBuffer), key.release(), static_cast<WebIDBDatabase::PutMode>(putMode), WebIDBCallbacksImpl::create(request).leakPtr(), indexIds, indexKeys); blink 428 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBRequest> indexRequest = openCursor(context, static_cast<IDBKeyRange*>(0), blink::WebIDBCursor::Next, WebIDBDatabase::PreemptiveTask); blink 84 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> put(blink::WebIDBDatabase::PutMode, PassRefPtr<IDBAny> source, ScriptState*, ScriptValue&, PassRefPtr<IDBKey>, ExceptionState&); blink 87 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, blink::WebIDBCursor::Direction, blink::WebIDBDatabase::TaskType = blink::WebIDBDatabase::NormalTask); blink 99 Source/modules/indexeddb/IDBObjectStore.h blink::WebIDBDatabase* backendDB() const; blink 106 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> put(blink::WebIDBDatabase::PutMode, PassRefPtr<IDBAny> source, ScriptState*, ScriptValue&, const ScriptValue& key, ExceptionState&); blink 38 Source/modules/indexeddb/IDBOpenDBRequest.cpp using blink::WebIDBDatabase; blink 77 Source/modules/indexeddb/IDBOpenDBRequest.cpp void IDBOpenDBRequest::onUpgradeNeeded(int64_t oldVersion, PassOwnPtr<WebIDBDatabase> backend, const IDBDatabaseMetadata& metadata, blink::WebIDBDataLoss dataLoss, String dataLossMessage) blink 44 Source/modules/indexeddb/IDBOpenDBRequest.h virtual void onUpgradeNeeded(int64_t oldVersion, PassOwnPtr<blink::WebIDBDatabase>, const IDBDatabaseMetadata&, blink::WebIDBDataLoss, String dataLossMessage) OVERRIDE; blink 45 Source/modules/indexeddb/IDBOpenDBRequest.h virtual void onSuccess(PassOwnPtr<blink::WebIDBDatabase>, const IDBDatabaseMetadata&) OVERRIDE; blink 43 Source/modules/indexeddb/IDBRequest.cpp using blink::WebIDBCursor; blink 66 Source/modules/indexeddb/IDBRequest.cpp , m_cursorDirection(blink::WebIDBCursor::Next) blink 242 Source/modules/indexeddb/IDBRequest.cpp void IDBRequest::onSuccess(PassOwnPtr<blink::WebIDBCursor> backend, PassRefPtr<IDBKey> key, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value) blink 94 Source/modules/indexeddb/IDBRequest.h void setCursorDetails(IndexedDB::CursorType, blink::WebIDBCursor::Direction); blink 100 Source/modules/indexeddb/IDBRequest.h virtual void onSuccess(PassOwnPtr<blink::WebIDBCursor>, PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>); blink 110 Source/modules/indexeddb/IDBRequest.h virtual void onUpgradeNeeded(int64_t oldVersion, PassOwnPtr<blink::WebIDBDatabase>, const IDBDatabaseMetadata&, blink::WebIDBDataLoss, String dataLossMessage) { ASSERT_NOT_REACHED(); } blink 111 Source/modules/indexeddb/IDBRequest.h virtual void onSuccess(PassOwnPtr<blink::WebIDBDatabase>, const IDBDatabaseMetadata&) { ASSERT_NOT_REACHED(); } blink 167 Source/modules/indexeddb/IDBRequest.h blink::WebIDBCursor::Direction m_cursorDirection; blink 123 Source/modules/indexeddb/IDBRequestTest.cpp class MockWebIDBDatabase : public blink::WebIDBDatabase { blink 163 Source/modules/indexeddb/IDBRequestTest.cpp request->onUpgradeNeeded(oldVersion, backend.release(), metadata, blink::WebIDBDataLossNone, String()); blink 42 Source/modules/indexeddb/IDBTransaction.cpp using blink::WebIDBDatabase; blink 400 Source/modules/indexeddb/IDBTransaction.cpp blink::WebIDBDatabase* IDBTransaction::backendDB() const blink 56 Source/modules/indexeddb/IDBTransaction.h static PassRefPtr<IDBTransaction> create(ExecutionContext*, int64_t, const Vector<String>& objectStoreNames, blink::WebIDBDatabase::TransactionMode, IDBDatabase*); blink 64 Source/modules/indexeddb/IDBTransaction.h static blink::WebIDBDatabase::TransactionMode stringToMode(const String&, ExceptionState&); blink 65 Source/modules/indexeddb/IDBTransaction.h static const AtomicString& modeToString(blink::WebIDBDatabase::TransactionMode); blink 67 Source/modules/indexeddb/IDBTransaction.h blink::WebIDBDatabase* backendDB() const; blink 72 Source/modules/indexeddb/IDBTransaction.h bool isReadOnly() const { return m_mode == blink::WebIDBDatabase::TransactionReadOnly; } blink 73 Source/modules/indexeddb/IDBTransaction.h bool isVersionChange() const { return m_mode == blink::WebIDBDatabase::TransactionVersionChange; } blink 108 Source/modules/indexeddb/IDBTransaction.h IDBTransaction(ExecutionContext*, int64_t, const Vector<String>&, blink::WebIDBDatabase::TransactionMode, IDBDatabase*, IDBOpenDBRequest*, const IDBDatabaseMetadata&); blink 123 Source/modules/indexeddb/IDBTransaction.h const blink::WebIDBDatabase::TransactionMode m_mode; blink 46 Source/modules/indexeddb/IDBTransactionTest.cpp using blink::WebIDBDatabase; blink 68 Source/modules/indexeddb/IDBTransactionTest.cpp class FakeWebIDBDatabase FINAL : public blink::WebIDBDatabase { blink 99 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBDatabase::TransactionReadOnly, db.get()); blink 126 Source/modules/indexeddb/IDBTransactionTest.cpp RefPtr<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBDatabase::TransactionReadOnly, db.get()); blink 40 Source/modules/indexeddb/IDBVersionChangeEvent.cpp : m_dataLoss(blink::WebIDBDataLossNone) blink 45 Source/modules/indexeddb/IDBVersionChangeEvent.cpp IDBVersionChangeEvent::IDBVersionChangeEvent(const AtomicString& eventType, unsigned long long oldVersion, const Nullable<unsigned long long>& newVersion, blink::WebIDBDataLoss dataLoss, const String& dataLossMessage) blink 59 Source/modules/indexeddb/IDBVersionChangeEvent.cpp , m_dataLoss(blink::WebIDBDataLossNone) blink 73 Source/modules/indexeddb/IDBVersionChangeEvent.cpp if (m_dataLoss == blink::WebIDBDataLossTotal) blink 54 Source/modules/indexeddb/IDBVersionChangeEvent.h static PassRefPtrWillBeRawPtr<IDBVersionChangeEvent> create(const AtomicString& eventType, unsigned long long oldVersion, const Nullable<unsigned long long>& newVersion, blink::WebIDBDataLoss dataLoss = blink::WebIDBDataLossNone, const String& dataLossMessage = String()) blink 75 Source/modules/indexeddb/IDBVersionChangeEvent.h IDBVersionChangeEvent(const AtomicString& eventType, unsigned long long oldVersion, const Nullable<unsigned long long>& newVersion, blink::WebIDBDataLoss, const String& dataLoss); blink 515 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp idbRequest = idbIndex->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), blink::WebIDBCursor::Next); blink 517 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp idbRequest = idbObjectStore->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), blink::WebIDBCursor::Next); blink 42 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebData; blink 43 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebIDBCursor; blink 44 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebIDBDatabase; blink 45 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebIDBDatabaseError; blink 46 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebIDBIndex; blink 47 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebIDBKey; blink 48 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebIDBKeyPath; blink 49 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp using blink::WebIDBMetadata; blink 73 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp void WebIDBCallbacksImpl::onSuccess(const blink::WebVector<blink::WebString>& webStringList) blink 126 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp void WebIDBCallbacksImpl::onUpgradeNeeded(long long oldVersion, WebIDBDatabase* database, const WebIDBMetadata& metadata, unsigned short dataLoss, blink::WebString dataLossMessage) blink 128 Source/modules/indexeddb/WebIDBCallbacksImpl.cpp m_request->onUpgradeNeeded(oldVersion, adoptPtr(database), metadata, static_cast<blink::WebIDBDataLoss>(dataLoss), dataLossMessage); blink 37 Source/modules/indexeddb/WebIDBCallbacksImpl.h namespace blink { blink 51 Source/modules/indexeddb/WebIDBCallbacksImpl.h class WebIDBCallbacksImpl FINAL : public blink::WebIDBCallbacks { blink 58 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onError(const blink::WebIDBDatabaseError&) OVERRIDE; blink 59 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onSuccess(const blink::WebVector<blink::WebString>&) OVERRIDE; blink 60 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onSuccess(blink::WebIDBCursor*, const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&) OVERRIDE; blink 61 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onSuccess(blink::WebIDBDatabase*, const blink::WebIDBMetadata&) OVERRIDE; blink 62 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onSuccess(const blink::WebIDBKey&) OVERRIDE; blink 63 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onSuccess(const blink::WebData&) OVERRIDE; blink 64 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onSuccess(const blink::WebData&, const blink::WebIDBKey&, const blink::WebIDBKeyPath&) OVERRIDE; blink 67 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onSuccess(const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&) OVERRIDE; blink 69 Source/modules/indexeddb/WebIDBCallbacksImpl.h virtual void onUpgradeNeeded(long long oldVersion, blink::WebIDBDatabase*, const blink::WebIDBMetadata&, unsigned short dataLoss, blink::WebString dataLossMessage) OVERRIDE; blink 58 Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.cpp void WebIDBDatabaseCallbacksImpl::onAbort(long long transactionId, const blink::WebIDBDatabaseError& error) blink 39 Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h class WebIDBDatabaseCallbacksImpl FINAL : public blink::WebIDBDatabaseCallbacks { blink 47 Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h virtual void onAbort(long long transactionId, const blink::WebIDBDatabaseError&) OVERRIDE; blink 47 Source/modules/mediasource/MediaSource.cpp using blink::WebSourceBuffer; blink 50 Source/modules/mediasource/MediaSourceBase.cpp using blink::WebMediaSource; blink 51 Source/modules/mediasource/MediaSourceBase.cpp using blink::WebSourceBuffer; blink 227 Source/modules/mediasource/MediaSourceBase.cpp endOfStreamInternal(blink::WebMediaSource::EndOfStreamStatusNetworkError, exceptionState); blink 229 Source/modules/mediasource/MediaSourceBase.cpp endOfStreamInternal(blink::WebMediaSource::EndOfStreamStatusDecodeError, exceptionState); blink 238 Source/modules/mediasource/MediaSourceBase.cpp endOfStreamInternal(blink::WebMediaSource::EndOfStreamStatusNoError, exceptionState); blink 241 Source/modules/mediasource/MediaSourceBase.cpp void MediaSourceBase::endOfStreamInternal(const blink::WebMediaSource::EndOfStreamStatus eosStatus, ExceptionState& exceptionState) blink 43 Source/modules/mediasource/MediaSourceBase.h namespace blink { blink 68 Source/modules/mediasource/MediaSourceBase.h virtual void setWebMediaSourceAndOpen(PassOwnPtr<blink::WebMediaSource>) OVERRIDE FINAL; blink 101 Source/modules/mediasource/MediaSourceBase.h PassOwnPtr<blink::WebSourceBuffer> createWebSourceBuffer(const String& type, const Vector<String>& codecs, ExceptionState&); blink 106 Source/modules/mediasource/MediaSourceBase.h void endOfStreamInternal(const blink::WebMediaSource::EndOfStreamStatus, ExceptionState&); blink 107 Source/modules/mediasource/MediaSourceBase.h OwnPtr<blink::WebMediaSource> m_webMediaSource; blink 53 Source/modules/mediasource/SourceBuffer.cpp using blink::WebSourceBuffer; blink 47 Source/modules/mediasource/SourceBuffer.h namespace blink { blink 63 Source/modules/mediasource/SourceBuffer.h static PassRefPtrWillBeRawPtr<SourceBuffer> create(PassOwnPtr<blink::WebSourceBuffer>, MediaSource*, GenericEventQueue*); blink 103 Source/modules/mediasource/SourceBuffer.h SourceBuffer(PassOwnPtr<blink::WebSourceBuffer>, MediaSource*, GenericEventQueue*); blink 124 Source/modules/mediasource/SourceBuffer.h OwnPtr<blink::WebSourceBuffer> m_webSourceBuffer; blink 45 Source/modules/mediasource/WebKitMediaSource.cpp using blink::WebSourceBuffer; blink 42 Source/modules/mediasource/WebKitSourceBuffer.cpp using blink::WebSourceBuffer; blink 40 Source/modules/mediasource/WebKitSourceBuffer.h namespace blink { blink 52 Source/modules/mediasource/WebKitSourceBuffer.h static PassRefPtrWillBeRawPtr<WebKitSourceBuffer> create(PassOwnPtr<blink::WebSourceBuffer>, PassRefPtrWillBeRawPtr<WebKitMediaSource>); blink 68 Source/modules/mediasource/WebKitSourceBuffer.h WebKitSourceBuffer(PassOwnPtr<blink::WebSourceBuffer>, PassRefPtrWillBeRawPtr<WebKitMediaSource>); blink 72 Source/modules/mediasource/WebKitSourceBuffer.h OwnPtr<blink::WebSourceBuffer> m_webSourceBuffer; blink 46 Source/modules/mediastream/MediaConstraintsImpl.cpp static bool parse(const Dictionary& constraintsDictionary, blink::WebVector<blink::WebMediaConstraint>& optional, blink::WebVector<blink::WebMediaConstraint>& mandatory) blink 62 Source/modules/mediastream/MediaConstraintsImpl.cpp Vector<blink::WebMediaConstraint> mandatoryConstraintsVector; blink 76 Source/modules/mediastream/MediaConstraintsImpl.cpp mandatoryConstraintsVector.append(blink::WebMediaConstraint(iter->key, iter->value)); blink 79 Source/modules/mediastream/MediaConstraintsImpl.cpp Vector<blink::WebMediaConstraint> optionalConstraintsVector; blink 105 Source/modules/mediastream/MediaConstraintsImpl.cpp optionalConstraintsVector.append(blink::WebMediaConstraint(key, value)); blink 115 Source/modules/mediastream/MediaConstraintsImpl.cpp blink::WebMediaConstraints create(const Dictionary& constraintsDictionary, ExceptionState& exceptionState) blink 117 Source/modules/mediastream/MediaConstraintsImpl.cpp blink::WebVector<blink::WebMediaConstraint> optional; blink 118 Source/modules/mediastream/MediaConstraintsImpl.cpp blink::WebVector<blink::WebMediaConstraint> mandatory; blink 121 Source/modules/mediastream/MediaConstraintsImpl.cpp return blink::WebMediaConstraints(); blink 124 Source/modules/mediastream/MediaConstraintsImpl.cpp blink::WebMediaConstraints constraints; blink 129 Source/modules/mediastream/MediaConstraintsImpl.cpp blink::WebMediaConstraints create() blink 131 Source/modules/mediastream/MediaConstraintsImpl.cpp blink::WebMediaConstraints constraints; blink 43 Source/modules/mediastream/MediaConstraintsImpl.h blink::WebMediaConstraints create(); blink 44 Source/modules/mediastream/MediaConstraintsImpl.h blink::WebMediaConstraints create(const Dictionary&, ExceptionState&); blink 33 Source/modules/mediastream/MediaDeviceInfo.cpp PassRefPtr<MediaDeviceInfo> MediaDeviceInfo::create(const blink::WebMediaDeviceInfo& webMediaDeviceInfo) blink 39 Source/modules/mediastream/MediaDeviceInfo.cpp MediaDeviceInfo::MediaDeviceInfo(const blink::WebMediaDeviceInfo& webMediaDeviceInfo) blink 52 Source/modules/mediastream/MediaDeviceInfo.cpp case blink::WebMediaDeviceInfo::MediaDeviceKindAudioInput: blink 54 Source/modules/mediastream/MediaDeviceInfo.cpp case blink::WebMediaDeviceInfo::MediaDeviceKindAudioOutput: blink 56 Source/modules/mediastream/MediaDeviceInfo.cpp case blink::WebMediaDeviceInfo::MediaDeviceKindVideoInput: blink 38 Source/modules/mediastream/MediaDeviceInfo.h static PassRefPtr<MediaDeviceInfo> create(const blink::WebMediaDeviceInfo&); blink 46 Source/modules/mediastream/MediaDeviceInfo.h explicit MediaDeviceInfo(const blink::WebMediaDeviceInfo&); blink 48 Source/modules/mediastream/MediaDeviceInfo.h blink::WebMediaDeviceInfo m_webMediaDeviceInfo; blink 53 Source/modules/mediastream/MediaStreamTrackSourcesRequestImpl.cpp void MediaStreamTrackSourcesRequestImpl::requestSucceeded(const blink::WebVector<blink::WebSourceInfo>& webSourceInfos) blink 36 Source/modules/mediastream/MediaStreamTrackSourcesRequestImpl.h namespace blink { blink 50 Source/modules/mediastream/MediaStreamTrackSourcesRequestImpl.h virtual void requestSucceeded(const blink::WebVector<blink::WebSourceInfo>&); blink 47 Source/modules/mediastream/RTCDTMFSender.cpp PassRefPtr<RTCDTMFSender> RTCDTMFSender::create(ExecutionContext* context, blink::WebRTCPeerConnectionHandler* peerConnectionHandler, PassRefPtr<MediaStreamTrack> prpTrack, ExceptionState& exceptionState) blink 50 Source/modules/mediastream/RTCDTMFSender.cpp OwnPtr<blink::WebRTCDTMFSenderHandler> handler = adoptPtr(peerConnectionHandler->createDTMFSender(track->component())); blink 61 Source/modules/mediastream/RTCDTMFSender.cpp RTCDTMFSender::RTCDTMFSender(ExecutionContext* context, PassRefPtr<MediaStreamTrack> track, PassOwnPtr<blink::WebRTCDTMFSenderHandler> handler) blink 127 Source/modules/mediastream/RTCDTMFSender.cpp void RTCDTMFSender::didPlayTone(const blink::WebString& tone) blink 36 Source/modules/mediastream/RTCDTMFSender.h namespace blink { blink 46 Source/modules/mediastream/RTCDTMFSender.h class RTCDTMFSender FINAL : public RefCounted<RTCDTMFSender>, public ScriptWrappable, public EventTargetWithInlineData, public blink::WebRTCDTMFSenderHandlerClient, public ActiveDOMObject { blink 49 Source/modules/mediastream/RTCDTMFSender.h static PassRefPtr<RTCDTMFSender> create(ExecutionContext*, blink::WebRTCPeerConnectionHandler*, PassRefPtr<MediaStreamTrack>, ExceptionState&); blink 72 Source/modules/mediastream/RTCDTMFSender.h RTCDTMFSender(ExecutionContext*, PassRefPtr<MediaStreamTrack>, PassOwnPtr<blink::WebRTCDTMFSenderHandler>); blink 78 Source/modules/mediastream/RTCDTMFSender.h virtual void didPlayTone(const blink::WebString&) OVERRIDE; blink 84 Source/modules/mediastream/RTCDTMFSender.h OwnPtr<blink::WebRTCDTMFSenderHandler> m_handler; blink 55 Source/modules/mediastream/RTCDataChannel.cpp PassRefPtr<RTCDataChannel> RTCDataChannel::create(ExecutionContext* context, PassOwnPtr<blink::WebRTCDataChannelHandler> handler) blink 61 Source/modules/mediastream/RTCDataChannel.cpp PassRefPtr<RTCDataChannel> RTCDataChannel::create(ExecutionContext* context, blink::WebRTCPeerConnectionHandler* peerConnectionHandler, const String& label, const blink::WebRTCDataChannelInit& init, ExceptionState& exceptionState) blink 63 Source/modules/mediastream/RTCDataChannel.cpp OwnPtr<blink::WebRTCDataChannelHandler> handler = adoptPtr(peerConnectionHandler->createDataChannel(label, init)); blink 71 Source/modules/mediastream/RTCDataChannel.cpp RTCDataChannel::RTCDataChannel(ExecutionContext* context, PassOwnPtr<blink::WebRTCDataChannelHandler> handler) blink 224 Source/modules/mediastream/RTCDataChannel.cpp void RTCDataChannel::didChangeReadyState(blink::WebRTCDataChannelHandlerClient::ReadyState newState) blink 243 Source/modules/mediastream/RTCDataChannel.cpp void RTCDataChannel::didReceiveStringData(const blink::WebString& text) blink 36 Source/modules/mediastream/RTCDataChannel.h namespace blink { blink 47 Source/modules/mediastream/RTCDataChannel.h class RTCDataChannel FINAL : public RefCounted<RTCDataChannel>, public ScriptWrappable, public EventTargetWithInlineData, public blink::WebRTCDataChannelHandlerClient { blink 50 Source/modules/mediastream/RTCDataChannel.h static PassRefPtr<RTCDataChannel> create(ExecutionContext*, PassOwnPtr<blink::WebRTCDataChannelHandler>); blink 51 Source/modules/mediastream/RTCDataChannel.h static PassRefPtr<RTCDataChannel> create(ExecutionContext*, blink::WebRTCPeerConnectionHandler*, const String& label, const blink::WebRTCDataChannelInit&, ExceptionState&); blink 90 Source/modules/mediastream/RTCDataChannel.h RTCDataChannel(ExecutionContext*, PassOwnPtr<blink::WebRTCDataChannelHandler>); blink 98 Source/modules/mediastream/RTCDataChannel.h virtual void didChangeReadyState(blink::WebRTCDataChannelHandlerClient::ReadyState) OVERRIDE; blink 99 Source/modules/mediastream/RTCDataChannel.h virtual void didReceiveStringData(const blink::WebString&) OVERRIDE; blink 103 Source/modules/mediastream/RTCDataChannel.h OwnPtr<blink::WebRTCDataChannelHandler> m_handler; blink 107 Source/modules/mediastream/RTCDataChannel.h blink::WebRTCDataChannelHandlerClient::ReadyState m_readyState; blink 57 Source/modules/mediastream/RTCIceCandidate.cpp return adoptRef(new RTCIceCandidate(blink::WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex))); blink 60 Source/modules/mediastream/RTCIceCandidate.cpp PassRefPtr<RTCIceCandidate> RTCIceCandidate::create(blink::WebRTCICECandidate webCandidate) blink 65 Source/modules/mediastream/RTCIceCandidate.cpp RTCIceCandidate::RTCIceCandidate(blink::WebRTCICECandidate webCandidate) blink 86 Source/modules/mediastream/RTCIceCandidate.cpp blink::WebRTCICECandidate RTCIceCandidate::webCandidate() const blink 49 Source/modules/mediastream/RTCIceCandidate.h static PassRefPtr<RTCIceCandidate> create(blink::WebRTCICECandidate); blink 58 Source/modules/mediastream/RTCIceCandidate.h blink::WebRTCICECandidate webCandidate() const; blink 61 Source/modules/mediastream/RTCIceCandidate.h explicit RTCIceCandidate(blink::WebRTCICECandidate); blink 63 Source/modules/mediastream/RTCIceCandidate.h blink::WebRTCICECandidate m_webCandidate; blink 167 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); blink 179 Source/modules/mediastream/RTCPeerConnection.cpp RTCPeerConnection::RTCPeerConnection(ExecutionContext* context, PassRefPtr<RTCConfiguration> configuration, blink::WebMediaConstraints constraints, ExceptionState& exceptionState) blink 195 Source/modules/mediastream/RTCPeerConnection.cpp m_peerHandler = adoptPtr(blink::Platform::current()->createRTCPeerConnectionHandler(this)); blink 221 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); blink 236 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); blink 261 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebRTCSessionDescription webSessionDescription = m_peerHandler->localDescription(); blink 286 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebRTCSessionDescription webSessionDescription = m_peerHandler->remoteDescription(); blink 303 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); blink 419 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebMediaConstraints constraints = MediaConstraintsImpl::create(mediaConstraints, exceptionState); blink 488 Source/modules/mediastream/RTCPeerConnection.cpp blink::WebRTCDataChannelInit init; blink 560 Source/modules/mediastream/RTCPeerConnection.cpp void RTCPeerConnection::didGenerateICECandidate(const blink::WebRTCICECandidate& webCandidate) blink 589 Source/modules/mediastream/RTCPeerConnection.cpp void RTCPeerConnection::didAddRemoteStream(const blink::WebMediaStream& remoteStream) blink 602 Source/modules/mediastream/RTCPeerConnection.cpp void RTCPeerConnection::didRemoveRemoteStream(const blink::WebMediaStream& remoteStream) blink 622 Source/modules/mediastream/RTCPeerConnection.cpp void RTCPeerConnection::didAddRemoteDataChannel(blink::WebRTCDataChannelHandler* handler) blink 59 Source/modules/mediastream/RTCPeerConnection.h class RTCPeerConnection FINAL : public RefCounted<RTCPeerConnection>, public ScriptWrappable, public blink::WebRTCPeerConnectionHandlerClient, public EventTargetWithInlineData, public ActiveDOMObject { blink 116 Source/modules/mediastream/RTCPeerConnection.h virtual void didGenerateICECandidate(const blink::WebRTCICECandidate&) OVERRIDE; blink 120 Source/modules/mediastream/RTCPeerConnection.h virtual void didAddRemoteStream(const blink::WebMediaStream&) OVERRIDE; blink 121 Source/modules/mediastream/RTCPeerConnection.h virtual void didRemoveRemoteStream(const blink::WebMediaStream&) OVERRIDE; blink 122 Source/modules/mediastream/RTCPeerConnection.h virtual void didAddRemoteDataChannel(blink::WebRTCDataChannelHandler*) OVERRIDE; blink 135 Source/modules/mediastream/RTCPeerConnection.h RTCPeerConnection(ExecutionContext*, PassRefPtr<RTCConfiguration>, blink::WebMediaConstraints, ExceptionState&); blink 142 Source/modules/mediastream/RTCPeerConnection.h void changeSignalingState(blink::WebRTCPeerConnectionHandlerClient::SignalingState); blink 143 Source/modules/mediastream/RTCPeerConnection.h void changeIceGatheringState(blink::WebRTCPeerConnectionHandlerClient::ICEGatheringState); blink 144 Source/modules/mediastream/RTCPeerConnection.h void changeIceConnectionState(blink::WebRTCPeerConnectionHandlerClient::ICEConnectionState); blink 155 Source/modules/mediastream/RTCPeerConnection.h OwnPtr<blink::WebRTCPeerConnectionHandler> m_peerHandler; blink 63 Source/modules/mediastream/RTCSessionDescription.cpp return adoptRef(new RTCSessionDescription(blink::WebRTCSessionDescription(type, sdp))); blink 66 Source/modules/mediastream/RTCSessionDescription.cpp PassRefPtr<RTCSessionDescription> RTCSessionDescription::create(blink::WebRTCSessionDescription webSessionDescription) blink 71 Source/modules/mediastream/RTCSessionDescription.cpp RTCSessionDescription::RTCSessionDescription(blink::WebRTCSessionDescription webSessionDescription) blink 100 Source/modules/mediastream/RTCSessionDescription.cpp blink::WebRTCSessionDescription RTCSessionDescription::webSessionDescription() blink 48 Source/modules/mediastream/RTCSessionDescription.h static PassRefPtr<RTCSessionDescription> create(blink::WebRTCSessionDescription); blink 56 Source/modules/mediastream/RTCSessionDescription.h blink::WebRTCSessionDescription webSessionDescription(); blink 59 Source/modules/mediastream/RTCSessionDescription.h explicit RTCSessionDescription(blink::WebRTCSessionDescription); blink 61 Source/modules/mediastream/RTCSessionDescription.h blink::WebRTCSessionDescription m_webSessionDescription; blink 62 Source/modules/mediastream/RTCSessionDescriptionRequestImpl.cpp void RTCSessionDescriptionRequestImpl::requestSucceeded(const blink::WebRTCSessionDescription& webSessionDescription) blink 39 Source/modules/mediastream/RTCSessionDescriptionRequestImpl.h namespace blink { blink 54 Source/modules/mediastream/RTCSessionDescriptionRequestImpl.h virtual void requestSucceeded(const blink::WebRTCSessionDescription&) OVERRIDE; blink 33 Source/modules/mediastream/SourceInfo.cpp PassRefPtr<SourceInfo> SourceInfo::create(const blink::WebSourceInfo& webSourceInfo) blink 39 Source/modules/mediastream/SourceInfo.cpp SourceInfo::SourceInfo(const blink::WebSourceInfo& webSourceInfo) blink 53 Source/modules/mediastream/SourceInfo.cpp case blink::WebSourceInfo::SourceKindAudio: blink 55 Source/modules/mediastream/SourceInfo.cpp case blink::WebSourceInfo::SourceKindVideo: blink 57 Source/modules/mediastream/SourceInfo.cpp case blink::WebSourceInfo::SourceKindNone: blink 73 Source/modules/mediastream/SourceInfo.cpp case blink::WebSourceInfo::VideoFacingModeNone: blink 75 Source/modules/mediastream/SourceInfo.cpp case blink::WebSourceInfo::VideoFacingModeUser: blink 77 Source/modules/mediastream/SourceInfo.cpp case blink::WebSourceInfo::VideoFacingModeEnvironment: blink 39 Source/modules/mediastream/SourceInfo.h static PassRefPtr<SourceInfo> create(const blink::WebSourceInfo&); blink 47 Source/modules/mediastream/SourceInfo.h explicit SourceInfo(const blink::WebSourceInfo&); blink 49 Source/modules/mediastream/SourceInfo.h blink::WebSourceInfo m_webSourceInfo; blink 50 Source/modules/mediastream/UserMediaRequest.cpp static blink::WebMediaConstraints parseOptions(const Dictionary& options, const String& mediaType, ExceptionState& exceptionState) blink 52 Source/modules/mediastream/UserMediaRequest.cpp blink::WebMediaConstraints constraints; blink 70 Source/modules/mediastream/UserMediaRequest.cpp blink::WebMediaConstraints audio = parseOptions(options, "audio", exceptionState); blink 74 Source/modules/mediastream/UserMediaRequest.cpp blink::WebMediaConstraints video = parseOptions(options, "video", exceptionState); blink 86 Source/modules/mediastream/UserMediaRequest.cpp UserMediaRequest::UserMediaRequest(ExecutionContext* context, UserMediaController* controller, blink::WebMediaConstraints audio, blink::WebMediaConstraints video, PassOwnPtr<NavigatorUserMediaSuccessCallback> successCallback, PassOwnPtr<NavigatorUserMediaErrorCallback> errorCallback) blink 110 Source/modules/mediastream/UserMediaRequest.cpp blink::WebMediaConstraints UserMediaRequest::audioConstraints() const blink 115 Source/modules/mediastream/UserMediaRequest.cpp blink::WebMediaConstraints UserMediaRequest::videoConstraints() const blink 69 Source/modules/mediastream/UserMediaRequest.h blink::WebMediaConstraints audioConstraints() const; blink 70 Source/modules/mediastream/UserMediaRequest.h blink::WebMediaConstraints videoConstraints() const; blink 76 Source/modules/mediastream/UserMediaRequest.h UserMediaRequest(ExecutionContext*, UserMediaController*, blink::WebMediaConstraints audio, blink::WebMediaConstraints video, PassOwnPtr<NavigatorUserMediaSuccessCallback>, PassOwnPtr<NavigatorUserMediaErrorCallback>); blink 78 Source/modules/mediastream/UserMediaRequest.h blink::WebMediaConstraints m_audio; blink 79 Source/modules/mediastream/UserMediaRequest.h blink::WebMediaConstraints m_video; blink 13 Source/modules/push_messaging/PushController.cpp PushController::PushController(blink::WebPushClient* client) blink 22 Source/modules/push_messaging/PushController.cpp PassOwnPtr<PushController> PushController::create(blink::WebPushClient* client) blink 27 Source/modules/push_messaging/PushController.cpp blink::WebPushClient* PushController::clientFrom(Page* page) blink 39 Source/modules/push_messaging/PushController.cpp void providePushControllerTo(Page& page, blink::WebPushClient* client) blink 14 Source/modules/push_messaging/PushController.h namespace blink { blink 26 Source/modules/push_messaging/PushController.h static PassOwnPtr<PushController> create(blink::WebPushClient*); blink 29 Source/modules/push_messaging/PushController.h static blink::WebPushClient* clientFrom(Page*); blink 31 Source/modules/push_messaging/PushController.h blink::WebPushClient* client() const { return m_client; } blink 34 Source/modules/push_messaging/PushController.h explicit PushController(blink::WebPushClient*); blink 36 Source/modules/push_messaging/PushController.h blink::WebPushClient* m_client; blink 39 Source/modules/push_messaging/PushController.h void providePushControllerTo(Page&, blink::WebPushClient*); blink 10 Source/modules/push_messaging/PushError.cpp String PushError::errorString(blink::WebPushError::ErrorType type) blink 13 Source/modules/push_messaging/PushError.cpp case blink::WebPushError::ErrorTypeAbort: blink 15 Source/modules/push_messaging/PushError.cpp case blink::WebPushError::ErrorTypeUnknown: blink 19 Source/modules/push_messaging/PushError.h typedef blink::WebPushError WebType; blink 28 Source/modules/push_messaging/PushError.h static String errorString(blink::WebPushError::ErrorType); blink 35 Source/modules/push_messaging/PushManager.cpp adapter->onError(new blink::WebPushError(blink::WebPushError::ErrorTypeAbort, "FIXME")); blink 19 Source/modules/push_messaging/PushRegistration.h typedef blink::WebPushRegistration WebType; blink 59 Source/modules/quota/DeprecatedStorageQuota.cpp blink::WebStorageQuotaType storageType = static_cast<blink::WebStorageQuotaType>(m_type); blink 60 Source/modules/quota/DeprecatedStorageQuota.cpp if (storageType != blink::WebStorageQuotaTypeTemporary && storageType != blink::WebStorageQuotaTypePersistent) { blink 74 Source/modules/quota/DeprecatedStorageQuota.cpp blink::Platform::current()->queryStorageUsageAndQuota(storagePartition, storageType, callbacks.release()); blink 81 Source/modules/quota/DeprecatedStorageQuota.cpp blink::WebStorageQuotaType storageType = static_cast<blink::WebStorageQuotaType>(m_type); blink 82 Source/modules/quota/DeprecatedStorageQuota.cpp if (storageType != blink::WebStorageQuotaTypeTemporary && storageType != blink::WebStorageQuotaTypePersistent) { blink 67 Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.cpp void DeprecatedStorageQuotaCallbacksImpl::didFail(blink::WebStorageQuotaError error) blink 60 Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h virtual void didFail(blink::WebStorageQuotaError) OVERRIDE; blink 52 Source/modules/quota/StorageQuota.cpp blink::WebStorageQuotaType type; blink 57 Source/modules/quota/StorageQuota.cpp { blink::WebStorageQuotaTypeTemporary, "temporary" }, blink 58 Source/modules/quota/StorageQuota.cpp { blink::WebStorageQuotaTypePersistent, "persistent" }, blink 61 Source/modules/quota/StorageQuota.cpp blink::WebStorageQuotaType stringToStorageQuotaType(const String& type) blink 68 Source/modules/quota/StorageQuota.cpp return blink::WebStorageQuotaTypeTemporary; blink 101 Source/modules/quota/StorageQuota.cpp blink::Platform::current()->queryStorageUsageAndQuota(storagePartition, stringToStorageQuotaType(type), callbacks.release()); blink 62 Source/modules/quota/StorageQuotaCallbacksImpl.cpp void StorageQuotaCallbacksImpl::didFail(blink::WebStorageQuotaError error) blink 55 Source/modules/quota/StorageQuotaCallbacksImpl.h virtual void didFail(blink::WebStorageQuotaError) OVERRIDE; blink 51 Source/modules/quota/StorageQuotaClient.h virtual void requestQuota(ExecutionContext*, blink::WebStorageQuotaType, unsigned long long newQuotaInBytes, PassOwnPtr<StorageQuotaCallback>, PassOwnPtr<StorageErrorCallback>) = 0; blink 20 Source/modules/screen_orientation/ScreenOrientation.cpp blink::WebScreenOrientation orientation; blink 31 Source/modules/screen_orientation/ScreenOrientation.cpp { portraitPrimary, blink::WebScreenOrientationPortraitPrimary }, blink 32 Source/modules/screen_orientation/ScreenOrientation.cpp { portraitSecondary, blink::WebScreenOrientationPortraitSecondary }, blink 33 Source/modules/screen_orientation/ScreenOrientation.cpp { landscapePrimary, blink::WebScreenOrientationLandscapePrimary }, blink 34 Source/modules/screen_orientation/ScreenOrientation.cpp { landscapeSecondary, blink::WebScreenOrientationLandscapeSecondary } blink 40 Source/modules/screen_orientation/ScreenOrientation.cpp static const AtomicString& orientationToString(blink::WebScreenOrientation orientation) blink 54 Source/modules/screen_orientation/ScreenOrientation.cpp static blink::WebScreenOrientations stringToOrientations(const AtomicString& orientationString) blink 61 Source/modules/screen_orientation/ScreenOrientation.cpp return blink::WebScreenOrientationPortraitPrimary | blink::WebScreenOrientationPortraitSecondary | blink 62 Source/modules/screen_orientation/ScreenOrientation.cpp blink::WebScreenOrientationLandscapePrimary | blink::WebScreenOrientationLandscapeSecondary; blink 65 Source/modules/screen_orientation/ScreenOrientation.cpp return blink::WebScreenOrientationPortraitPrimary | blink::WebScreenOrientationPortraitSecondary; blink 67 Source/modules/screen_orientation/ScreenOrientation.cpp return blink::WebScreenOrientationLandscapePrimary | blink::WebScreenOrientationLandscapeSecondary; blink 85 Source/modules/screen_orientation/ScreenOrientation.cpp void ScreenOrientation::lockOrientationAsync(blink::WebScreenOrientations orientations) blink 97 Source/modules/screen_orientation/ScreenOrientation.cpp blink::Platform::current()->unlockOrientation(); blink 99 Source/modules/screen_orientation/ScreenOrientation.cpp blink::Platform::current()->lockOrientation(m_lockedOrientations); blink 134 Source/modules/screen_orientation/ScreenOrientation.cpp return orientationToString(blink::WebScreenOrientationPortraitPrimary); blink 142 Source/modules/screen_orientation/ScreenOrientation.cpp blink::WebScreenOrientations orientations = stringToOrientations(orientationString); blink 39 Source/modules/screen_orientation/ScreenOrientation.h void lockOrientationAsync(blink::WebScreenOrientations); blink 46 Source/modules/screen_orientation/ScreenOrientation.h blink::WebScreenOrientations m_lockedOrientations; blink 33 Source/modules/screen_orientation/ScreenOrientationController.cpp , m_orientation(blink::WebScreenOrientationPortraitPrimary) blink 52 Source/modules/screen_orientation/ScreenOrientationController.cpp void ScreenOrientationController::didChangeScreenOrientation(blink::WebScreenOrientation orientation) blink 17 Source/modules/screen_orientation/ScreenOrientationController.h void didChangeScreenOrientation(blink::WebScreenOrientation); blink 19 Source/modules/screen_orientation/ScreenOrientationController.h blink::WebScreenOrientation orientation() const { return m_orientation; } blink 31 Source/modules/screen_orientation/ScreenOrientationController.h blink::WebScreenOrientation m_orientation; blink 74 Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp void ScreenOrientationDispatcher::didChangeScreenOrientation(blink::WebScreenOrientation orientation) blink 92 Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp blink::Platform::current()->setScreenOrientationListener(this); blink 97 Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp blink::Platform::current()->setScreenOrientationListener(0); blink 15 Source/modules/screen_orientation/ScreenOrientationDispatcher.h class ScreenOrientationDispatcher FINAL : public blink::WebScreenOrientationListener { blink 30 Source/modules/screen_orientation/ScreenOrientationDispatcher.h virtual void didChangeScreenOrientation(blink::WebScreenOrientation) OVERRIDE; blink 36 Source/modules/serviceworkers/Response.cpp void Response::populateWebServiceWorkerResponse(blink::WebServiceWorkerResponse& response) blink 13 Source/modules/serviceworkers/Response.h namespace blink { class WebServiceWorkerResponse; } blink 37 Source/modules/serviceworkers/Response.h void populateWebServiceWorkerResponse(blink::WebServiceWorkerResponse&); blink 41 Source/modules/serviceworkers/ServiceWorker.cpp ServiceWorker::ServiceWorker(PassOwnPtr<blink::WebServiceWorker> worker) blink 53 Source/modules/serviceworkers/ServiceWorker.cpp blink::WebString messageString = message->toWireString(); blink 54 Source/modules/serviceworkers/ServiceWorker.cpp OwnPtr<blink::WebMessagePortChannelArray> webChannels = MessagePort::toWebMessagePortChannelArray(channels.release()); blink 41 Source/modules/serviceworkers/ServiceWorker.h namespace blink { blink 49 Source/modules/serviceworkers/ServiceWorker.h static PassRefPtr<ServiceWorker> create(PassOwnPtr<blink::WebServiceWorker> worker) blink 55 Source/modules/serviceworkers/ServiceWorker.h typedef blink::WebServiceWorker WebType; blink 66 Source/modules/serviceworkers/ServiceWorker.h explicit ServiceWorker(PassOwnPtr<blink::WebServiceWorker>); blink 68 Source/modules/serviceworkers/ServiceWorker.h OwnPtr<blink::WebServiceWorker> m_outerWorker; blink 45 Source/modules/serviceworkers/ServiceWorkerContainer.cpp using blink::WebServiceWorkerProvider; blink 41 Source/modules/serviceworkers/ServiceWorkerContainer.h namespace blink { blink 53 Source/modules/serviceworkers/ServiceWorkerContainer.h public blink::WebServiceWorkerProviderClient { blink 66 Source/modules/serviceworkers/ServiceWorkerContainer.h blink::WebServiceWorkerProvider* m_provider; blink 17 Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp PassOwnPtr<ServiceWorkerContainerClient> ServiceWorkerContainerClient::create(PassOwnPtr<blink::WebServiceWorkerProvider> provider) blink 51 Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp ServiceWorkerContainerClient::ServiceWorkerContainerClient(PassOwnPtr<blink::WebServiceWorkerProvider> provider) blink 56 Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp void provideServiceWorkerContainerClientToWorker(WorkerClients* clients, PassOwnPtr<blink::WebServiceWorkerProvider> provider) blink 12 Source/modules/serviceworkers/ServiceWorkerContainerClient.h namespace blink { blink 27 Source/modules/serviceworkers/ServiceWorkerContainerClient.h static PassOwnPtr<ServiceWorkerContainerClient> create(PassOwnPtr<blink::WebServiceWorkerProvider>); blink 30 Source/modules/serviceworkers/ServiceWorkerContainerClient.h blink::WebServiceWorkerProvider* provider() { return m_provider.get(); } blink 36 Source/modules/serviceworkers/ServiceWorkerContainerClient.h explicit ServiceWorkerContainerClient(PassOwnPtr<blink::WebServiceWorkerProvider>); blink 38 Source/modules/serviceworkers/ServiceWorkerContainerClient.h OwnPtr<blink::WebServiceWorkerProvider> m_provider; blink 41 Source/modules/serviceworkers/ServiceWorkerContainerClient.h void provideServiceWorkerContainerClientToWorker(WorkerClients*, PassOwnPtr<blink::WebServiceWorkerProvider>); blink 34 Source/modules/serviceworkers/ServiceWorkerError.cpp using blink::WebServiceWorkerError; blink 44 Source/modules/serviceworkers/ServiceWorkerError.h typedef blink::WebServiceWorkerError WebType; blink 53 Source/modules/serviceworkers/ServiceWorkerError.h static String errorString(blink::WebServiceWorkerError::ErrorType); blink 50 Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h virtual void didHandleActivateEvent(int eventID, blink::WebServiceWorkerEventResult) = 0; blink 51 Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h virtual void didHandleInstallEvent(int installEventID, blink::WebServiceWorkerEventResult) = 0; blink 113 Source/modules/serviceworkers/WaitUntilObserver.cpp blink::WebServiceWorkerEventResult result = m_hasError ? blink::WebServiceWorkerEventResultRejected : blink::WebServiceWorkerEventResultCompleted; blink 61 Source/modules/vibration/NavigatorVibration.cpp if (sanitized[i] > blink::kVibrationDurationMax) blink 62 Source/modules/vibration/NavigatorVibration.cpp sanitized[i] = blink::kVibrationDurationMax; blink 95 Source/modules/vibration/NavigatorVibration.cpp blink::Platform::current()->cancelVibration(); blink 107 Source/modules/vibration/NavigatorVibration.cpp blink::Platform::current()->vibrate(m_pattern[0]); blink 42 Source/modules/webaudio/AsyncAudioDecoder.cpp : m_thread(adoptPtr(blink::Platform::current()->createThread("Audio Decoder"))) blink 53 Source/modules/webaudio/AsyncAudioDecoder.h OwnPtr<blink::WebThread> m_thread; blink 87 Source/modules/webaudio/OfflineAudioDestinationNode.cpp m_renderThread = adoptPtr(blink::Platform::current()->createThread("Offline Audio Renderer")); blink 70 Source/modules/webaudio/OfflineAudioDestinationNode.h OwnPtr<blink::WebThread> m_renderThread; blink 48 Source/modules/webaudio/ScriptProcessorNode.cpp size_t hardwareBufferSize = blink::Platform::current()->audioHardwareBufferSize(); blink 608 Source/modules/webdatabase/DatabaseBackendBase.cpp if (blink::Platform::current()->databaseObserver()) { blink 609 Source/modules/webdatabase/DatabaseBackendBase.cpp blink::Platform::current()->databaseObserver()->reportOpenDatabaseResult( blink 618 Source/modules/webdatabase/DatabaseBackendBase.cpp if (blink::Platform::current()->databaseObserver()) { blink 619 Source/modules/webdatabase/DatabaseBackendBase.cpp blink::Platform::current()->databaseObserver()->reportChangeVersionResult( blink 628 Source/modules/webdatabase/DatabaseBackendBase.cpp if (blink::Platform::current()->databaseObserver()) { blink 629 Source/modules/webdatabase/DatabaseBackendBase.cpp blink::Platform::current()->databaseObserver()->reportStartTransactionResult( blink 638 Source/modules/webdatabase/DatabaseBackendBase.cpp if (blink::Platform::current()->databaseObserver()) { blink 639 Source/modules/webdatabase/DatabaseBackendBase.cpp blink::Platform::current()->databaseObserver()->reportCommitTransactionResult( blink 648 Source/modules/webdatabase/DatabaseBackendBase.cpp if (blink::Platform::current()->databaseObserver()) { blink 649 Source/modules/webdatabase/DatabaseBackendBase.cpp blink::Platform::current()->databaseObserver()->reportExecuteStatementResult( blink 658 Source/modules/webdatabase/DatabaseBackendBase.cpp if (blink::Platform::current()->databaseObserver()) { blink 659 Source/modules/webdatabase/DatabaseBackendBase.cpp blink::Platform::current()->databaseObserver()->reportVacuumDatabaseResult( blink 49 Source/modules/webdatabase/DatabaseTask.h class DatabaseTask : public blink::WebThread::Task { blink 73 Source/modules/webdatabase/DatabaseThread.cpp m_thread = adoptPtr(blink::Platform::current()->createThread("WebCore: Database")); blink 82 Source/modules/webdatabase/DatabaseThread.h OwnPtr<blink::WebThread> m_thread; blink 53 Source/modules/webdatabase/DatabaseTracker.cpp if (blink::Platform::current()->databaseObserver()) { blink 54 Source/modules/webdatabase/DatabaseTracker.cpp blink::Platform::current()->databaseObserver()->databaseClosed( blink 172 Source/modules/webdatabase/DatabaseTracker.cpp if (blink::Platform::current()->databaseObserver()) { blink 173 Source/modules/webdatabase/DatabaseTracker.cpp blink::Platform::current()->databaseObserver()->databaseOpened( blink 65 Source/modules/webdatabase/QuotaTracker.cpp *spaceAvailable = blink::Platform::current()->databaseGetSpaceAvailableForOrigin(originIdentifier); blink 47 Source/modules/webdatabase/SQLTransactionClient.cpp if (blink::Platform::current()->databaseObserver()) { blink 48 Source/modules/webdatabase/SQLTransactionClient.cpp blink::Platform::current()->databaseObserver()->databaseModified( blink 72 Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp fd = blink::Platform::current()->databaseOpenFile(String(fileName), desiredFlags); blink 75 Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp fd = blink::Platform::current()->databaseOpenFile(String(fileName), newFlags); blink 106 Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp return blink::Platform::current()->databaseDeleteFile(String(fileName), syncDir); blink 117 Source/modules/webdatabase/sqlite/SQLiteFileSystemPosix.cpp int attr = static_cast<int>(blink::Platform::current()->databaseGetFileAttributes(String(fileName))); blink 58 Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.cpp HANDLE h = blink::Platform::current()->databaseOpenFile(String(fileName), desiredFlags); blink 85 Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.cpp return blink::Platform::current()->databaseDeleteFile(String(fileName), false); blink 96 Source/modules/webdatabase/sqlite/SQLiteFileSystemWin.cpp DWORD attr = blink::Platform::current()->databaseGetFileAttributes(String(fileName)); blink 38 Source/modules/webmidi/MIDIAccessor.cpp using blink::WebString; blink 53 Source/modules/webmidi/MIDIAccessor.cpp m_accessor = adoptPtr(blink::Platform::current()->createMIDIAccessor(this)); blink 43 Source/modules/webmidi/MIDIAccessor.h class MIDIAccessor FINAL : public blink::WebMIDIAccessorClient { blink 53 Source/modules/webmidi/MIDIAccessor.h virtual void didAddInputPort(const blink::WebString& id, const blink::WebString& manufacturer, const blink::WebString& name, const blink::WebString& version) OVERRIDE; blink 54 Source/modules/webmidi/MIDIAccessor.h virtual void didAddOutputPort(const blink::WebString& id, const blink::WebString& manufacturer, const blink::WebString& name, const blink::WebString& version) OVERRIDE; blink 62 Source/modules/webmidi/MIDIAccessor.h OwnPtr<blink::WebMIDIAccessor> m_accessor; blink 53 Source/modules/websockets/NewWebSocketChannelImpl.cpp using blink::WebSocketHandle; blink 103 Source/modules/websockets/NewWebSocketChannelImpl.cpp , m_handle(adoptPtr(blink::Platform::current()->createWebSocketHandle())) blink 136 Source/modules/websockets/NewWebSocketChannelImpl.cpp blink::WebVector<blink::WebString> webProtocols(protocols.size()); blink 353 Source/modules/websockets/NewWebSocketChannelImpl.cpp void NewWebSocketChannelImpl::didConnect(WebSocketHandle* handle, bool fail, const blink::WebString& selectedProtocol, const blink::WebString& extensions) blink 369 Source/modules/websockets/NewWebSocketChannelImpl.cpp void NewWebSocketChannelImpl::didStartOpeningHandshake(WebSocketHandle* handle, const blink::WebSocketHandshakeRequestInfo& request) blink 378 Source/modules/websockets/NewWebSocketChannelImpl.cpp void NewWebSocketChannelImpl::didFinishOpeningHandshake(WebSocketHandle* handle, const blink::WebSocketHandshakeResponseInfo& response) blink 387 Source/modules/websockets/NewWebSocketChannelImpl.cpp void NewWebSocketChannelImpl::didFail(WebSocketHandle* handle, const blink::WebString& message) blink 448 Source/modules/websockets/NewWebSocketChannelImpl.cpp void NewWebSocketChannelImpl::didClose(WebSocketHandle* handle, bool wasClean, unsigned short code, const blink::WebString& reason) blink 53 Source/modules/websockets/NewWebSocketChannelImpl.h namespace blink { blink 66 Source/modules/websockets/NewWebSocketChannelImpl.h class NewWebSocketChannelImpl FINAL : public WebSocketChannel, public RefCounted<NewWebSocketChannelImpl>, public blink::WebSocketHandleClient, public ContextLifecycleObserver { blink 133 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didConnect(blink::WebSocketHandle*, bool fail, const blink::WebString& selectedProtocol, const blink::WebString& extensions) OVERRIDE; blink 134 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didStartOpeningHandshake(blink::WebSocketHandle*, const blink::WebSocketHandshakeRequestInfo&) OVERRIDE; blink 135 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didFinishOpeningHandshake(blink::WebSocketHandle*, const blink::WebSocketHandshakeResponseInfo&) OVERRIDE; blink 136 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didFail(blink::WebSocketHandle*, const blink::WebString& message) OVERRIDE; blink 137 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didReceiveData(blink::WebSocketHandle*, bool fin, blink::WebSocketHandle::MessageType, const char* data, size_t /* size */) OVERRIDE; blink 138 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didClose(blink::WebSocketHandle*, bool wasClean, unsigned short code, const blink::WebString& reason) OVERRIDE; blink 139 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didReceiveFlowControl(blink::WebSocketHandle*, int64_t quota) OVERRIDE; blink 140 Source/modules/websockets/NewWebSocketChannelImpl.h virtual void didStartClosingHandshake(blink::WebSocketHandle*) OVERRIDE; blink 156 Source/modules/websockets/NewWebSocketChannelImpl.h OwnPtr<blink::WebSocketHandle> m_handle; blink 145 Source/modules/websockets/WebSocketHandshake.cpp blink::Platform::current()->histogramEnumeration("WebCore.WebSocket.HandshakeResult", m_mode, WebSocketHandshake::ModeMax); blink 140 Source/modules/websockets/WebSocketPerMessageDeflate.cpp blink::Platform::current()->histogramEnumeration("WebCore.WebSocket.PerMessageDeflateContextTakeOverMode", mode, WebSocketDeflater::ContextTakeOverModeMax); blink 63 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp static PassOwnPtr<ThreadableWebSocketChannelSyncHelper> create(PassOwnPtr<blink::WebWaitableEvent> event) blink 95 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp blink::WebWaitableEvent* event() const blink 101 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp ThreadableWebSocketChannelSyncHelper(PassOwnPtr<blink::WebWaitableEvent> event) blink 108 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp OwnPtr<blink::WebWaitableEvent> m_event; blink 463 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp OwnPtr<ThreadableWebSocketChannelSyncHelper> syncHelper = ThreadableWebSocketChannelSyncHelper::create(adoptPtr(blink::Platform::current()->createWaitableEvent())); blink 567 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp blink::WebWaitableEvent* shutdownEvent = m_workerGlobalScope->thread()->shutdownEvent(); blink 568 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp Vector<blink::WebWaitableEvent*> events; blink 573 Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp blink::WebWaitableEvent* signalled = blink::Platform::current()->waitMultipleEvents(events); blink 49 Source/modules/websockets/WorkerThreadableWebSocketChannel.h namespace blink { blink 71 Source/platform/AsyncFileSystemCallbacks.h virtual void didCreateFileWriter(PassOwnPtr<blink::WebFileWriter>, long long length) { ASSERT_NOT_REACHED(); } blink 45 Source/platform/CryptoResult.h virtual void completeWithError(const blink::WebString&) = 0; blink 46 Source/platform/CryptoResult.h virtual void completeWithBuffer(const blink::WebArrayBuffer&) = 0; blink 48 Source/platform/CryptoResult.h virtual void completeWithKey(const blink::WebCryptoKey&) = 0; blink 49 Source/platform/CryptoResult.h virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) = 0; blink 51 Source/platform/CryptoResult.h blink::WebCryptoResult result() blink 53 Source/platform/CryptoResult.h return blink::WebCryptoResult(this); blink 93 Source/platform/DragImageTest.cpp virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&, CompositeOperator, blink::WebBlendMode) OVERRIDE blink 40 Source/platform/EventTracer.cpp COMPILE_ASSERT(sizeof(blink::Platform::TraceEventHandle) == sizeof(TraceEvent::TraceEventHandle), TraceEventHandle_types_must_be_compatible); blink 49 Source/platform/EventTracer.cpp traceSamplingState[0] = blink::Platform::current()->getTraceSamplingState(0); blink 53 Source/platform/EventTracer.cpp traceSamplingState[1] = blink::Platform::current()->getTraceSamplingState(1); blink 56 Source/platform/EventTracer.cpp traceSamplingState[2] = blink::Platform::current()->getTraceSamplingState(2); blink 63 Source/platform/EventTracer.cpp return blink::Platform::current()->getTraceCategoryEnabledFlag(categoryName); blink 70 Source/platform/EventTracer.cpp return blink::Platform::current()->addTraceEvent(phase, categoryEnabledFlag, name, id, numArgs, argNames, argTypes, argValues, flags); blink 75 Source/platform/EventTracer.cpp blink::Platform::current()->updateTraceEventDuration(categoryEnabledFlag, name, handle); blink 60 Source/platform/FileMetadata.cpp blink::WebFileInfo webFileInfo; blink 61 Source/platform/FileMetadata.cpp if (!blink::Platform::current()->fileUtilities()->getFileInfo(path, webFileInfo)) blink 71 Source/platform/FileMetadata.cpp return blink::Platform::current()->fileUtilities()->directoryName(path); blink 76 Source/platform/FileMetadata.cpp return blink::Platform::current()->fileUtilities()->filePathToURL(path); blink 33 Source/platform/HostWindow.h namespace blink { blink 61 Source/platform/HostWindow.h virtual blink::WebScreenInfo screenInfo() const = 0; blink 38 Source/platform/Language.cpp computedDefaultLanguage = blink::Platform::current()->defaultLocale(); blink 60 Source/platform/LinkHash.cpp return blink::Platform::current()->visitedLinkHash(buffer.data(), buffer.length()); blink 44 Source/platform/MIMETypeRegistry.cpp return blink::Platform::current()->mimeRegistry()->mimeTypeForExtension(ext); blink 50 Source/platform/MIMETypeRegistry.cpp return blink::Platform::current()->mimeRegistry()->wellKnownMimeTypeForExtension(ext); blink 72 Source/platform/MIMETypeRegistry.cpp return blink::Platform::current()->mimeRegistry()->supportsImageMIMEType(mimeType.lower()) blink 73 Source/platform/MIMETypeRegistry.cpp != blink::WebMimeRegistry::IsNotSupported; blink 92 Source/platform/MIMETypeRegistry.cpp return blink::Platform::current()->mimeRegistry()->supportsJavaScriptMIMEType(mimeType.lower()) blink 93 Source/platform/MIMETypeRegistry.cpp != blink::WebMimeRegistry::IsNotSupported; blink 98 Source/platform/MIMETypeRegistry.cpp return blink::Platform::current()->mimeRegistry()->supportsNonImageMIMEType(mimeType.lower()) blink 99 Source/platform/MIMETypeRegistry.cpp != blink::WebMimeRegistry::IsNotSupported; blink 105 Source/platform/MIMETypeRegistry.cpp && blink::Platform::current()->mimeRegistry()->supportsMediaSourceMIMEType(mimeType.lower(), codecs); blink 111 Source/platform/MIMETypeRegistry.cpp return blink::Platform::current()->mimeRegistry()->supportsEncryptedMediaMIMEType(keySystem, mimeType.lower(), codecs); blink 93 Source/platform/PlatformScreen.cpp blink::WebVector<char> profile; blink 94 Source/platform/PlatformScreen.cpp blink::Platform::current()->screenColorProfile(&profile); blink 66 Source/platform/Prerender.cpp blink::WebPrerenderingSupport* platform = blink::WebPrerenderingSupport::current(); blink 69 Source/platform/Prerender.cpp platform->add(blink::WebPrerender(this)); blink 74 Source/platform/Prerender.cpp blink::WebPrerenderingSupport* platform = blink::WebPrerenderingSupport::current(); blink 77 Source/platform/Prerender.cpp platform->cancel(blink::WebPrerender(this)); blink 82 Source/platform/Prerender.cpp blink::WebPrerenderingSupport* platform = blink::WebPrerenderingSupport::current(); blink 85 Source/platform/Prerender.cpp platform->abandon(blink::WebPrerender(this)); blink 45 Source/platform/Prerender.h namespace blink { blink 221 Source/platform/PurgeableVector.cpp OwnPtr<blink::WebDiscardableMemory> discardable = adoptPtr( blink 222 Source/platform/PurgeableVector.cpp blink::Platform::current()->allocateAndLockDiscardableMemory(capacity)); blink 39 Source/platform/PurgeableVector.h namespace blink { blink 118 Source/platform/PurgeableVector.h OwnPtr<blink::WebDiscardableMemory> m_discardable; blink 44 Source/platform/SSLKeyGenerator.cpp sizes[0] = locale.queryString(blink::WebLocalizedString::KeygenMenuHighGradeKeySize); blink 45 Source/platform/SSLKeyGenerator.cpp sizes[1] = locale.queryString(blink::WebLocalizedString::KeygenMenuMediumGradeKeySize); blink 50 Source/platform/SSLKeyGenerator.cpp return blink::Platform::current()->signedPublicKeyAndChallengeString(keySizeIndex, blink::WebString(challengeString), blink::WebURL(url)); blink 35 Source/platform/SharedTimer.cpp blink::Platform::current()->setSharedTimerFiredFunction(f); blink 40 Source/platform/SharedTimer.cpp blink::Platform::current()->setSharedTimerFireInterval(fireTime); blink 45 Source/platform/SharedTimer.cpp blink::Platform::current()->stopSharedTimer(); blink 49 Source/platform/StorageQuotaCallbacks.h virtual void didFail(blink::WebStorageQuotaError) { ASSERT_NOT_REACHED(); }; blink 39 Source/platform/Task.h class Task : public blink::WebThread::Task { blink 68 Source/platform/TestingPlatformSupport.cpp , m_oldPlatform(blink::Platform::current()) blink 70 Source/platform/TestingPlatformSupport.cpp blink::Platform::initialize(this); blink 75 Source/platform/TestingPlatformSupport.cpp blink::Platform::initialize(m_oldPlatform); blink 78 Source/platform/TestingPlatformSupport.cpp blink::WebDiscardableMemory* TestingPlatformSupport::allocateAndLockDiscardableMemory(size_t bytes) blink 40 Source/platform/TestingPlatformSupport.h class TestingDiscardableMemory : public blink::WebDiscardableMemory { blink 55 Source/platform/TestingPlatformSupport.h class TestingPlatformSupport : public blink::Platform { blink 68 Source/platform/TestingPlatformSupport.h virtual blink::WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) OVERRIDE; blink 74 Source/platform/TestingPlatformSupport.h blink::Platform* const m_oldPlatform; blink 640 Source/platform/audio/AudioBus.cpp blink::WebAudioBus webAudioBus; blink 641 Source/platform/audio/AudioBus.cpp if (blink::Platform::current()->loadAudioResource(&webAudioBus, data, size)) blink 648 Source/platform/audio/AudioBus.cpp const blink::WebData& resource = blink::Platform::current()->loadResource(name); blink 62 Source/platform/audio/AudioDestination.cpp m_callbackBufferSize = blink::Platform::current()->audioHardwareBufferSize(); blink 85 Source/platform/audio/AudioDestination.cpp m_audioDevice = adoptPtr(blink::Platform::current()->createAudioDevice(m_callbackBufferSize, numberOfInputChannels, numberOfOutputChannels, sampleRate, this, inputDeviceId)); blink 130 Source/platform/audio/AudioDestination.cpp return static_cast<float>(blink::Platform::current()->audioHardwareSampleRate()); blink 135 Source/platform/audio/AudioDestination.cpp return static_cast<float>(blink::Platform::current()->audioHardwareOutputChannels()); blink 138 Source/platform/audio/AudioDestination.cpp void AudioDestination::render(const blink::WebVector<float*>& sourceData, const blink::WebVector<float*>& audioData, size_t numberOfFrames) blink 47 Source/platform/audio/AudioDestination.h class PLATFORM_EXPORT AudioDestination : public blink::WebAudioDevice::RenderCallback, public AudioSourceProvider { blink 64 Source/platform/audio/AudioDestination.h virtual void render(const blink::WebVector<float*>& sourceData, const blink::WebVector<float*>& audioData, size_t numberOfFrames) OVERRIDE; blink 86 Source/platform/audio/AudioDestination.h OwnPtr<blink::WebAudioDevice> m_audioDevice; blink 100 Source/platform/audio/HRTFDatabaseLoader.cpp m_databaseLoaderThread = adoptPtr(blink::Platform::current()->createThread("HRTF database loader")); blink 86 Source/platform/audio/HRTFDatabaseLoader.h OwnPtr<blink::WebThread> m_databaseLoaderThread; blink 125 Source/platform/audio/ReverbConvolver.cpp m_backgroundThread = adoptPtr(blink::Platform::current()->createThread("Reverb convolution background thread")); blink 42 Source/platform/audio/ReverbConvolver.h namespace blink { blink 86 Source/platform/audio/ReverbConvolver.h OwnPtr<blink::WebThread> m_backgroundThread; blink 52 Source/platform/blob/BlobRegistry.cpp using blink::WebBlobData; blink 53 Source/platform/blob/BlobRegistry.cpp using blink::WebBlobRegistry; blink 54 Source/platform/blob/BlobRegistry.cpp using blink::WebThreadSafeData; blink 107 Source/platform/blob/BlobRegistry.cpp return blink::Platform::current()->blobRegistry(); blink 138 Source/platform/blob/BlobRegistry.cpp blobRegistry()->registerBlobData(uuid, blink::WebBlobData(data)); blink 34 Source/platform/exported/WebActiveGestureAnimation.h namespace blink { blink 62 Source/platform/exported/WebCryptoResult.cpp WebArrayBuffer buffer = blink::WebArrayBuffer::create(bytesSize, 1); blink 202 Source/platform/exported/WebMediaStreamSource.cpp blink::WebVector<const float*> busVector(numberOfChannels); blink 35 Source/platform/exported/WebScrollbarImpl.h namespace blink { blink 32 Source/platform/exported/WebScrollbarThemeClientImpl.cpp using blink::WebScrollbar; blink 121 Source/platform/exported/WebScrollbarThemeClientImpl.cpp blink::WebVector<blink::WebRect> webTickmarks; blink 43 Source/platform/exported/WebScrollbarThemeClientImpl.h WebScrollbarThemeClientImpl(blink::WebScrollbar*); blink 83 Source/platform/exported/WebScrollbarThemeClientImpl.h blink::WebScrollbar* m_scrollbar; blink 38 Source/platform/exported/WebScrollbarThemeGeometryNative.cpp PassOwnPtr<blink::WebScrollbarThemeGeometryNative> WebScrollbarThemeGeometryNative::create(WebCore::ScrollbarTheme* theme) blink 38 Source/platform/exported/WebScrollbarThemeGeometryNative.h namespace blink { blink 43 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::setVoiceList(const blink::WebVector<blink::WebSpeechSynthesisVoice>& voices) blink 52 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didStartSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) blink 57 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didFinishSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) blink 62 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didPauseSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) blink 67 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didResumeSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) blink 72 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::speakingErrorOccurred(const blink::WebSpeechSynthesisUtterance& utterance) blink 77 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::wordBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance& utterance, unsigned charIndex) blink 82 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::sentenceBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance& utterance, unsigned charIndex) blink 41 Source/platform/exported/WebSpeechSynthesizerClientImpl.h class WebSpeechSynthesizerClientImpl : public blink::WebSpeechSynthesizerClient { blink 46 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void setVoiceList(const blink::WebVector<blink::WebSpeechSynthesisVoice>& voices); blink 47 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void didStartSpeaking(const blink::WebSpeechSynthesisUtterance&); blink 48 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void didFinishSpeaking(const blink::WebSpeechSynthesisUtterance&); blink 49 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void didPauseSpeaking(const blink::WebSpeechSynthesisUtterance&); blink 50 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void didResumeSpeaking(const blink::WebSpeechSynthesisUtterance&); blink 51 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void speakingErrorOccurred(const blink::WebSpeechSynthesisUtterance&); blink 52 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void wordBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance&, unsigned charIndex); blink 53 Source/platform/exported/WebSpeechSynthesizerClientImpl.h virtual void sentenceBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance&, unsigned charIndex); blink 36 Source/platform/exported/WebURLRequestPrivate.h namespace blink { blink 38 Source/platform/exported/WebURLResponsePrivate.h namespace blink { blink 37 Source/platform/exported/WrappedResourceRequest.h namespace blink { blink 37 Source/platform/exported/WrappedResourceResponse.h namespace blink { blink 15 Source/platform/fonts/FontCacheTest.cpp class EmptyPlatform : public blink::Platform { blink 27 Source/platform/fonts/FontCacheTest.cpp blink::Platform* oldPlatform = blink::Platform::current(); blink 29 Source/platform/fonts/FontCacheTest.cpp blink::Platform::initialize(platform.get()); blink 43 Source/platform/fonts/FontCacheTest.cpp blink::Platform::initialize(oldPlatform); blink 258 Source/platform/fonts/harfbuzz/FontPlatformDataHarfBuzz.cpp blink::WebFontRenderStyle style; blink 265 Source/platform/fonts/harfbuzz/FontPlatformDataHarfBuzz.cpp else if (blink::Platform::current()->sandboxSupport()) blink 266 Source/platform/fonts/harfbuzz/FontPlatformDataHarfBuzz.cpp blink::Platform::current()->sandboxSupport()->getRenderStyleForStrike(font, sizeAndStyle, &style); blink 268 Source/platform/fonts/harfbuzz/FontPlatformDataHarfBuzz.cpp blink::WebFontInfo::renderStyleForStrike(font, sizeAndStyle, &style); blink 39 Source/platform/fonts/linux/FontCacheLinux.cpp blink::WebFontFamily webFamily; blink 40 Source/platform/fonts/linux/FontCacheLinux.cpp if (blink::Platform::current()->sandboxSupport()) blink 41 Source/platform/fonts/linux/FontCacheLinux.cpp blink::Platform::current()->sandboxSupport()->getFontFamilyForCharacter(c, preferredLocale, &webFamily); blink 43 Source/platform/fonts/linux/FontCacheLinux.cpp blink::WebFontInfo::familyForChar(c, preferredLocale, &webFamily); blink 250 Source/platform/graphics/BitmapImage.cpp void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) blink 255 Source/platform/graphics/BitmapImage.cpp void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation) blink 103 Source/platform/graphics/BitmapImage.h virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator, blink::WebBlendMode) OVERRIDE; blink 104 Source/platform/graphics/BitmapImage.h virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator, blink::WebBlendMode, RespectImageOrientationEnum) OVERRIDE; blink 64 Source/platform/graphics/BitmapImageTest.cpp String filePath = blink::Platform::current()->unitTestSupport()->webKitRootDir(); blink 66 Source/platform/graphics/BitmapImageTest.cpp return blink::Platform::current()->unitTestSupport()->readFromFile(filePath); blink 60 Source/platform/graphics/Canvas2DImageBufferSurface.h virtual blink::WebLayer* layer() const OVERRIDE { return m_layerBridge->layer(); } blink 42 Source/platform/graphics/Canvas2DLayerBridge.cpp using blink::WebExternalTextureLayer; blink 43 Source/platform/graphics/Canvas2DLayerBridge.cpp using blink::WebGraphicsContext3D; blink 71 Source/platform/graphics/Canvas2DLayerBridge.cpp OwnPtr<blink::WebGraphicsContext3DProvider> contextProvider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 83 Source/platform/graphics/Canvas2DLayerBridge.cpp Canvas2DLayerBridge::Canvas2DLayerBridge(PassOwnPtr<blink::WebGraphicsContext3DProvider> contextProvider, PassOwnPtr<SkDeferredCanvas> canvas, int msaaSampleCount, OpacityMode opacityMode) blink 105 Source/platform/graphics/Canvas2DLayerBridge.cpp m_layer = adoptPtr(blink::Platform::current()->compositorSupport()->createExternalTextureLayer(this)); blink 323 Source/platform/graphics/Canvas2DLayerBridge.cpp blink::WebGraphicsContext3D* Canvas2DLayerBridge::context() blink 353 Source/platform/graphics/Canvas2DLayerBridge.cpp blink::WebGraphicsContext3D* sharedContext = 0; blink 359 Source/platform/graphics/Canvas2DLayerBridge.cpp m_contextProvider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 376 Source/platform/graphics/Canvas2DLayerBridge.cpp bool Canvas2DLayerBridge::prepareMailbox(blink::WebExternalTextureMailbox* outMailbox, blink::WebExternalBitmap* bitmap) blink 391 Source/platform/graphics/Canvas2DLayerBridge.cpp blink::WebGraphicsContext3D* webContext = context(); blink 470 Source/platform/graphics/Canvas2DLayerBridge.cpp void Canvas2DLayerBridge::mailboxReleased(const blink::WebExternalTextureMailbox& mailbox) blink 497 Source/platform/graphics/Canvas2DLayerBridge.cpp blink::WebLayer* Canvas2DLayerBridge::layer() const blink 43 Source/platform/graphics/Canvas2DLayerBridge.h namespace blink { blink 54 Source/platform/graphics/Canvas2DLayerBridge.h class PLATFORM_EXPORT Canvas2DLayerBridge : public blink::WebExternalTextureLayerClient, public SkDeferredCanvas::NotificationClient, public DoublyLinkedListNode<Canvas2DLayerBridge>, public RefCounted<Canvas2DLayerBridge> { blink 62 Source/platform/graphics/Canvas2DLayerBridge.h virtual blink::WebGraphicsContext3D* context() OVERRIDE; blink 63 Source/platform/graphics/Canvas2DLayerBridge.h virtual bool prepareMailbox(blink::WebExternalTextureMailbox*, blink::WebExternalBitmap*) OVERRIDE; blink 64 Source/platform/graphics/Canvas2DLayerBridge.h virtual void mailboxReleased(const blink::WebExternalTextureMailbox&) OVERRIDE; blink 77 Source/platform/graphics/Canvas2DLayerBridge.h blink::WebLayer* layer() const; blink 98 Source/platform/graphics/Canvas2DLayerBridge.h Canvas2DLayerBridge(PassOwnPtr<blink::WebGraphicsContext3DProvider>, PassOwnPtr<SkDeferredCanvas>, int, OpacityMode); blink 103 Source/platform/graphics/Canvas2DLayerBridge.h OwnPtr<blink::WebExternalTextureLayer> m_layer; blink 104 Source/platform/graphics/Canvas2DLayerBridge.h OwnPtr<blink::WebGraphicsContext3DProvider> m_contextProvider; blink 128 Source/platform/graphics/Canvas2DLayerBridge.h blink::WebExternalTextureMailbox m_mailbox; blink 44 Source/platform/graphics/Canvas2DLayerBridgeTest.cpp using namespace blink; blink 31 Source/platform/graphics/Canvas2DLayerManager.cpp using blink::WebThread; blink 65 Source/platform/graphics/Canvas2DLayerManager.cpp blink::Platform::current()->currentThread()->removeTaskObserver(this); blink 84 Source/platform/graphics/Canvas2DLayerManager.cpp blink::Platform::current()->currentThread()->removeTaskObserver(this); blink 108 Source/platform/graphics/Canvas2DLayerManager.cpp blink::Platform::current()->currentThread()->addTaskObserver(this); blink 35 Source/platform/graphics/Canvas2DLayerManager.h class PLATFORM_EXPORT Canvas2DLayerManager : public blink::WebThread::TaskObserver { blink 46 Source/platform/graphics/Canvas2DLayerManagerTest.cpp class MockWebGraphicsContext3DProvider : public blink::WebGraphicsContext3DProvider { blink 48 Source/platform/graphics/Canvas2DLayerManagerTest.cpp MockWebGraphicsContext3DProvider(blink::WebGraphicsContext3D* context3d) blink 51 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::WebGraphicsContext3D* context3d() blink 62 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::WebGraphicsContext3D* m_context3d; blink 67 Source/platform/graphics/Canvas2DLayerManagerTest.cpp FakeCanvas2DLayerBridge(blink::WebGraphicsContext3D* context, PassOwnPtr<SkDeferredCanvas> canvas) blink 144 Source/platform/graphics/Canvas2DLayerManagerTest.cpp OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D); blink 171 Source/platform/graphics/Canvas2DLayerManagerTest.cpp OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D); blink 188 Source/platform/graphics/Canvas2DLayerManagerTest.cpp OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D); blink 207 Source/platform/graphics/Canvas2DLayerManagerTest.cpp OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D); blink 221 Source/platform/graphics/Canvas2DLayerManagerTest.cpp OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D); blink 247 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->exitRunLoop(); blink 250 Source/platform/graphics/Canvas2DLayerManagerTest.cpp class DeferredFrameTestTask : public blink::WebThread::Task { blink 271 Source/platform/graphics/Canvas2DLayerManagerTest.cpp OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D); blink 275 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(), true)); blink 276 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->enterRunLoop(); blink 283 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(), true)); blink 284 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->enterRunLoop(); blink 288 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(), true)); blink 289 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->enterRunLoop(); blink 294 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(), false)); blink 295 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->enterRunLoop(); blink 299 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(), false)); blink 300 Source/platform/graphics/Canvas2DLayerManagerTest.cpp blink::Platform::current()->currentThread()->enterRunLoop(); blink 87 Source/platform/graphics/CrossfadeGeneratedImage.cpp void CrossfadeGeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) blink 100 Source/platform/graphics/CrossfadeGeneratedImage.cpp void CrossfadeGeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) blink 55 Source/platform/graphics/CrossfadeGeneratedImage.h CompositeOperator, blink::WebBlendMode) OVERRIDE; blink 58 Source/platform/graphics/CrossfadeGeneratedImage.h const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing) OVERRIDE; blink 221 Source/platform/graphics/DeferredImageDecoderTest.cpp OwnPtr<blink::WebThread> thread = adoptPtr(blink::Platform::current()->createThread("RasterThread")); blink 85 Source/platform/graphics/DiscardablePixelRef.cpp m_discardable = adoptPtr(blink::Platform::current()->allocateAndLockDiscardableMemory(bytes)); blink 65 Source/platform/graphics/DiscardablePixelRef.h OwnPtr<blink::WebDiscardableMemory> m_discardable; blink 53 Source/platform/graphics/GeneratedImage.h const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing) OVERRIDE = 0; blink 34 Source/platform/graphics/GradientGeneratedImage.cpp void GradientGeneratedImage::draw(GraphicsContext* destContext, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode) blink 48 Source/platform/graphics/GradientGeneratedImage.cpp const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) blink 51 Source/platform/graphics/GradientGeneratedImage.h CompositeOperator, blink::WebBlendMode) OVERRIDE; blink 54 Source/platform/graphics/GradientGeneratedImage.h const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing) OVERRIDE; blink 60 Source/platform/graphics/GraphicsContext.cpp using blink::WebBlendMode; blink 1037 Source/platform/graphics/GraphicsContext.cpp drawImage(image, dest, src, op, blink::WebBlendModeNormal, shouldRespectImageOrientation); blink 169 Source/platform/graphics/GraphicsContext.h void setCompositeOperation(CompositeOperator, blink::WebBlendMode = blink::WebBlendModeNormal); blink 171 Source/platform/graphics/GraphicsContext.h blink::WebBlendMode blendModeOperation() const { return immutableState()->blendMode(); } blink 257 Source/platform/graphics/GraphicsContext.h void drawImage(Image*, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator, blink::WebBlendMode, RespectImageOrientationEnum = DoNotRespectImageOrientation); blink 260 Source/platform/graphics/GraphicsContext.h CompositeOperator = CompositeSourceOver, blink::WebBlendMode = blink::WebBlendModeNormal, const IntSize& repeatSpacing = IntSize()); blink 265 Source/platform/graphics/GraphicsContext.h void drawImageBuffer(ImageBuffer*, const IntPoint&, CompositeOperator = CompositeSourceOver, blink::WebBlendMode = blink::WebBlendModeNormal); blink 266 Source/platform/graphics/GraphicsContext.h void drawImageBuffer(ImageBuffer*, const IntRect&, CompositeOperator = CompositeSourceOver, blink::WebBlendMode = blink::WebBlendModeNormal); blink 267 Source/platform/graphics/GraphicsContext.h void drawImageBuffer(ImageBuffer*, const IntPoint& destPoint, const IntRect& srcRect, CompositeOperator = CompositeSourceOver, blink::WebBlendMode = blink::WebBlendModeNormal); blink 268 Source/platform/graphics/GraphicsContext.h void drawImageBuffer(ImageBuffer*, const IntRect& destRect, const IntRect& srcRect, CompositeOperator = CompositeSourceOver, blink::WebBlendMode = blink::WebBlendModeNormal); blink 270 Source/platform/graphics/GraphicsContext.h void drawImageBuffer(ImageBuffer*, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator = CompositeSourceOver, blink::WebBlendMode = blink::WebBlendModeNormal); blink 17 Source/platform/graphics/GraphicsContextState.cpp , m_blendMode(blink::WebBlendModeNormal) blink 226 Source/platform/graphics/GraphicsContextState.cpp void GraphicsContextState::setCompositeOperation(CompositeOperator compositeOperation, blink::WebBlendMode blendMode) blink 124 Source/platform/graphics/GraphicsContextState.h void setCompositeOperation(CompositeOperator, blink::WebBlendMode); blink 126 Source/platform/graphics/GraphicsContextState.h blink::WebBlendMode blendMode() const { return m_blendMode; } blink 171 Source/platform/graphics/GraphicsContextState.h blink::WebBlendMode m_blendMode; blink 58 Source/platform/graphics/GraphicsLayer.cpp using blink::Platform; blink 59 Source/platform/graphics/GraphicsLayer.cpp using blink::WebAnimation; blink 60 Source/platform/graphics/GraphicsLayer.cpp using blink::WebFilterOperations; blink 61 Source/platform/graphics/GraphicsLayer.cpp using blink::WebLayer; blink 62 Source/platform/graphics/GraphicsLayer.cpp using blink::WebPoint; blink 84 Source/platform/graphics/GraphicsLayer.cpp , m_blendMode(blink::WebBlendModeNormal) blink 481 Source/platform/graphics/GraphicsLayer.cpp blink::WebGraphicsLayerDebugInfo* GraphicsLayer::takeDebugInfoFor(WebLayer* layer) blink 569 Source/platform/graphics/GraphicsLayer.cpp if (m_blendMode != blink::WebBlendModeNormal) { blink 756 Source/platform/graphics/GraphicsLayer.cpp String GraphicsLayer::debugName(blink::WebLayer* webLayer) const blink 874 Source/platform/graphics/GraphicsLayer.cpp void GraphicsLayer::setClipParent(blink::WebLayer* parent) blink 880 Source/platform/graphics/GraphicsLayer.cpp void GraphicsLayer::setScrollParent(blink::WebLayer* parent) blink 939 Source/platform/graphics/GraphicsLayer.cpp void GraphicsLayer::setBlendMode(blink::WebBlendMode blendMode) blink 944 Source/platform/graphics/GraphicsLayer.cpp platformLayer()->setBlendMode(blink::WebBlendMode(blendMode)); blink 52 Source/platform/graphics/GraphicsLayer.h namespace blink { blink 73 Source/platform/graphics/GraphicsLayer.h virtual blink::WebLayer* layer() = 0; blink 84 Source/platform/graphics/GraphicsLayer.h class PLATFORM_EXPORT GraphicsLayer : public GraphicsContextPainter, public blink::WebAnimationDelegate, public blink::WebLayerScrollClient, public blink::WebLayerClient { blink 94 Source/platform/graphics/GraphicsLayer.h virtual blink::WebGraphicsLayerDebugInfo* takeDebugInfoFor(blink::WebLayer*) OVERRIDE; blink 183 Source/platform/graphics/GraphicsLayer.h void setScrollParent(blink::WebLayer*); blink 184 Source/platform/graphics/GraphicsLayer.h void setClipParent(blink::WebLayer*); blink 202 Source/platform/graphics/GraphicsLayer.h blink::WebBlendMode blendMode() const { return m_blendMode; } blink 203 Source/platform/graphics/GraphicsLayer.h void setBlendMode(blink::WebBlendMode); blink 234 Source/platform/graphics/GraphicsLayer.h bool addAnimation(PassOwnPtr<blink::WebAnimation>); blink 241 Source/platform/graphics/GraphicsLayer.h void setContentsToPlatformLayer(blink::WebLayer* layer) { setContentsTo(layer); } blink 248 Source/platform/graphics/GraphicsLayer.h blink::WebLayer* platformLayer() const; blink 272 Source/platform/graphics/GraphicsLayer.h String debugName(blink::WebLayer*) const; blink 288 Source/platform/graphics/GraphicsLayer.h blink::WebContentLayer* contentLayer() const { return m_layer.get(); } blink 290 Source/platform/graphics/GraphicsLayer.h static void registerContentsLayer(blink::WebLayer*); blink 291 Source/platform/graphics/GraphicsLayer.h static void unregisterContentsLayer(blink::WebLayer*); blink 297 Source/platform/graphics/GraphicsLayer.h virtual void notifyAnimationStarted(double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE; blink 298 Source/platform/graphics/GraphicsLayer.h virtual void notifyAnimationFinished(double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE; blink 306 Source/platform/graphics/GraphicsLayer.h friend class blink::GraphicsLayerFactoryChromium; blink 309 Source/platform/graphics/GraphicsLayer.h virtual blink::WebLayer* contentsLayer() const { return m_contentsLayer; } blink 332 Source/platform/graphics/GraphicsLayer.h void setContentsTo(blink::WebLayer*); blink 333 Source/platform/graphics/GraphicsLayer.h void setupContentsLayer(blink::WebLayer*); blink 335 Source/platform/graphics/GraphicsLayer.h blink::WebLayer* contentsLayerIfRegistered(); blink 354 Source/platform/graphics/GraphicsLayer.h blink::WebBlendMode m_blendMode; blink 388 Source/platform/graphics/GraphicsLayer.h OwnPtr<blink::WebContentLayer> m_layer; blink 389 Source/platform/graphics/GraphicsLayer.h OwnPtr<blink::WebImageLayer> m_imageLayer; blink 390 Source/platform/graphics/GraphicsLayer.h OwnPtr<blink::WebNinePatchLayer> m_ninePatchLayer; blink 391 Source/platform/graphics/GraphicsLayer.h blink::WebLayer* m_contentsLayer; blink 35 Source/platform/graphics/GraphicsLayerDebugInfo.cpp void GraphicsLayerDebugInfo::appendAsTraceFormat(blink::WebString* out) const blink 43 Source/platform/graphics/GraphicsLayerDebugInfo.h class GraphicsLayerDebugInfo FINAL : public blink::WebGraphicsLayerDebugInfo { blink 48 Source/platform/graphics/GraphicsLayerDebugInfo.h virtual void appendAsTraceFormat(blink::WebString* out) const OVERRIDE; blink 45 Source/platform/graphics/GraphicsLayerTest.cpp using namespace blink; blink 61 Source/platform/graphics/GraphicsLayerTest.cpp virtual blink::WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); } blink 71 Source/platform/graphics/GraphicsTypes.cpp bool parseCompositeAndBlendOperator(const String& s, CompositeOperator& op, blink::WebBlendMode& blendOp) blink 76 Source/platform/graphics/GraphicsTypes.cpp blendOp = blink::WebBlendModeNormal; blink 83 Source/platform/graphics/GraphicsTypes.cpp blendOp = static_cast<blink::WebBlendMode>(i+1); blink 95 Source/platform/graphics/GraphicsTypes.cpp String compositeOperatorName(CompositeOperator op, blink::WebBlendMode blendOp) blink 101 Source/platform/graphics/GraphicsTypes.cpp if (blendOp != blink::WebBlendModeNormal) blink 111 Source/platform/graphics/GraphicsTypes.h PLATFORM_EXPORT String compositeOperatorName(CompositeOperator, blink::WebBlendMode); blink 112 Source/platform/graphics/GraphicsTypes.h PLATFORM_EXPORT bool parseCompositeAndBlendOperator(const String&, CompositeOperator&, blink::WebBlendMode&); blink 67 Source/platform/graphics/Image.cpp const blink::WebData& resource = blink::Platform::current()->loadResource(name); blink 119 Source/platform/graphics/Image.cpp void Image::draw(GraphicsContext* ctx, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator op, blink::WebBlendMode blendMode, RespectImageOrientationEnum) blink 124 Source/platform/graphics/Image.cpp void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& destRect, const FloatPoint& srcPoint, const FloatSize& scaledTileSize, CompositeOperator op, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) blink 226 Source/platform/graphics/Image.cpp const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& destRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) blink 118 Source/platform/graphics/Image.h const FloatRect&, blink::WebBlendMode = blink::WebBlendModeNormal, const IntSize& repeatSpacing = IntSize()); blink 130 Source/platform/graphics/Image.h virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator, blink::WebBlendMode) = 0; blink 131 Source/platform/graphics/Image.h virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator, blink::WebBlendMode, RespectImageOrientationEnum); blink 133 Source/platform/graphics/Image.h CompositeOperator, blink::WebBlendMode, const IntSize& repeatSpacing); blink 148 Source/platform/graphics/ImageBuffer.cpp blink::WebLayer* ImageBuffer::platformLayer() const blink 153 Source/platform/graphics/ImageBuffer.cpp bool ImageBuffer::copyToPlatformTexture(blink::WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY) blink 161 Source/platform/graphics/ImageBuffer.cpp OwnPtr<blink::WebGraphicsContext3DProvider> provider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 164 Source/platform/graphics/ImageBuffer.cpp blink::WebGraphicsContext3D* sharedContext = provider->context3d(); blink 168 Source/platform/graphics/ImageBuffer.cpp OwnPtr<blink::WebExternalTextureMailbox> mailbox = adoptPtr(new blink::WebExternalTextureMailbox); blink 222 Source/platform/graphics/ImageBuffer.cpp OwnPtr<blink::WebGraphicsContext3DProvider> provider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 225 Source/platform/graphics/ImageBuffer.cpp blink::WebGraphicsContext3D* context3D = provider->context3d(); blink 234 Source/platform/graphics/ImageBuffer.cpp void ImageBuffer::draw(GraphicsContext* context, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator op, blink::WebBlendMode blendMode) blink 260 Source/platform/graphics/ImageBuffer.cpp const FloatPoint& phase, CompositeOperator op, const FloatRect& destRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing) blink 50 Source/platform/graphics/ImageBuffer.h namespace blink { blink 111 Source/platform/graphics/ImageBuffer.h blink::WebLayer* platformLayer() const; blink 117 Source/platform/graphics/ImageBuffer.h bool copyToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject, GLenum, GLenum, GLint, bool, bool); blink 130 Source/platform/graphics/ImageBuffer.h void draw(GraphicsContext*, const FloatRect&, const FloatRect& = FloatRect(0, 0, -1, -1), CompositeOperator = CompositeSourceOver, blink::WebBlendMode = blink::WebBlendModeNormal); blink 131 Source/platform/graphics/ImageBuffer.h void drawPattern(GraphicsContext*, const FloatRect&, const FloatSize&, const FloatPoint&, CompositeOperator, const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing = IntSize()); blink 43 Source/platform/graphics/ImageBufferSurface.h namespace blink { class WebLayer; } blink 64 Source/platform/graphics/ImageBufferSurface.h virtual blink::WebLayer* layer() const { return 0; }; blink 224 Source/platform/graphics/ImageFrameGeneratorTest.cpp OwnPtr<blink::WebThread> thread = adoptPtr(blink::Platform::current()->createThread("DecodeThread")); blink 91 Source/platform/graphics/ImageLayerChromiumTest.cpp virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&, CompositeOperator, blink::WebBlendMode) OVERRIDE blink 107 Source/platform/graphics/ImageLayerChromiumTest.cpp virtual blink::WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); } blink 36 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.cpp using blink::WebFloatRect; blink 37 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.cpp using blink::WebRect; blink 48 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h class PLATFORM_EXPORT OpaqueRectTrackingContentLayerDelegate : public blink::WebContentLayerClient { blink 59 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h virtual void paintContents(SkCanvas*, const blink::WebRect& clip, bool canPaintLCDText, blink::WebFloatRect& opaque) OVERRIDE; blink 38 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp using blink::WebRect; blink 39 Source/platform/graphics/OpaqueRectTrackingContentLayerDelegateTest.cpp using blink::WebFloatRect; blink 32 Source/platform/graphics/filters/FilterOperationsTest.cpp using namespace blink; blink 67 Source/platform/graphics/filters/ParallelJobs.h size_t numberOfJobs = std::max(static_cast<size_t>(2), std::min(requestedJobNumber, blink::Platform::current()->numberOfProcessors())); blink 71 Source/platform/graphics/filters/ParallelJobs.h OwnPtr<blink::WebThread> thread = adoptPtr(blink::Platform::current()->createThread("Unfortunate parallel worker")); blink 96 Source/platform/graphics/filters/ParallelJobs.h Vector<OwnPtr<blink::WebThread> > m_threads; blink 95 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp bool SkiaImageFilterBuilder::buildFilterOperations(const FilterOperations& operations, blink::WebFilterOperations* filters) blink 188 Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp filters->appendDropShadowFilter(blink::WebPoint(drop.x(), drop.y()), drop.stdDeviation(), drop.color().rgb()); blink 50 Source/platform/graphics/filters/SkiaImageFilterBuilder.h bool buildFilterOperations(const FilterOperations&, blink::WebFilterOperations*); blink 62 Source/platform/graphics/gpu/DrawingBuffer.cpp ScopedTextureUnit0BindingRestorer(blink::WebGraphicsContext3D* context, GLenum activeTextureUnit, Platform3DObject textureUnitZeroId) blink 76 Source/platform/graphics/gpu/DrawingBuffer.cpp blink::WebGraphicsContext3D* m_context; blink 81 Source/platform/graphics/gpu/DrawingBuffer.cpp PassRefPtr<DrawingBuffer> DrawingBuffer::create(blink::WebGraphicsContext3D* context, const IntSize& size, PreserveDrawingBuffer preserve, PassRefPtr<ContextEvictionManager> contextEvictionManager) blink 98 Source/platform/graphics/gpu/DrawingBuffer.cpp DrawingBuffer::DrawingBuffer(blink::WebGraphicsContext3D* context, blink 158 Source/platform/graphics/gpu/DrawingBuffer.cpp blink::WebGraphicsContext3D* DrawingBuffer::context() blink 163 Source/platform/graphics/gpu/DrawingBuffer.cpp bool DrawingBuffer::prepareMailbox(blink::WebExternalTextureMailbox* outMailbox, blink::WebExternalBitmap* bitmap) blink 234 Source/platform/graphics/gpu/DrawingBuffer.cpp void DrawingBuffer::mailboxReleased(const blink::WebExternalTextureMailbox& mailbox) blink 319 Source/platform/graphics/gpu/DrawingBuffer.cpp bool DrawingBuffer::copyToPlatformTexture(blink::WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY) blink 389 Source/platform/graphics/gpu/DrawingBuffer.cpp blink::WebLayer* DrawingBuffer::platformLayer() blink 395 Source/platform/graphics/gpu/DrawingBuffer.cpp m_layer = adoptPtr(blink::Platform::current()->compositorSupport()->createExternalTextureLayer(this)); blink 422 Source/platform/graphics/gpu/DrawingBuffer.cpp OwnPtr<blink::WebGraphicsContext3DProvider> provider = blink 423 Source/platform/graphics/gpu/DrawingBuffer.cpp adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 426 Source/platform/graphics/gpu/DrawingBuffer.cpp blink::WebGraphicsContext3D* context = provider->context3d(); blink 48 Source/platform/graphics/gpu/DrawingBuffer.h namespace blink { blink 70 Source/platform/graphics/gpu/DrawingBuffer.h class PLATFORM_EXPORT DrawingBuffer : public RefCounted<DrawingBuffer>, public blink::WebExternalTextureLayerClient { blink 72 Source/platform/graphics/gpu/DrawingBuffer.h blink::WebExternalTextureMailbox mailbox; blink 82 Source/platform/graphics/gpu/DrawingBuffer.h static PassRefPtr<DrawingBuffer> create(blink::WebGraphicsContext3D*, const IntSize&, PreserveDrawingBuffer, PassRefPtr<ContextEvictionManager>); blink 129 Source/platform/graphics/gpu/DrawingBuffer.h blink::WebLayer* platformLayer(); blink 133 Source/platform/graphics/gpu/DrawingBuffer.h virtual blink::WebGraphicsContext3D* context() OVERRIDE; blink 134 Source/platform/graphics/gpu/DrawingBuffer.h virtual bool prepareMailbox(blink::WebExternalTextureMailbox*, blink::WebExternalBitmap*) OVERRIDE; blink 135 Source/platform/graphics/gpu/DrawingBuffer.h virtual void mailboxReleased(const blink::WebExternalTextureMailbox&) OVERRIDE; blink 138 Source/platform/graphics/gpu/DrawingBuffer.h bool copyToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject texture, GLenum internalFormat, blink 147 Source/platform/graphics/gpu/DrawingBuffer.h DrawingBuffer(blink::WebGraphicsContext3D*, const IntSize&, bool multisampleExtensionSupported, blink 202 Source/platform/graphics/gpu/DrawingBuffer.h blink::WebGraphicsContext3D* m_context; blink 237 Source/platform/graphics/gpu/DrawingBuffer.h blink::WebGraphicsContext3D::Attributes m_attributes; blink 245 Source/platform/graphics/gpu/DrawingBuffer.h OwnPtr<blink::WebExternalTextureLayer> m_layer; blink 46 Source/platform/graphics/gpu/DrawingBufferTest.cpp using namespace blink; blink 146 Source/platform/graphics/gpu/DrawingBufferTest.cpp blink::WebExternalTextureMailbox mailbox; blink 152 Source/platform/graphics/gpu/DrawingBufferTest.cpp blink::WebExternalTextureMailbox mailbox; blink 189 Source/platform/graphics/gpu/DrawingBufferTest.cpp explicit TextureMailboxWrapper(const blink::WebExternalTextureMailbox& mailbox) blink 199 Source/platform/graphics/gpu/DrawingBufferTest.cpp blink::WebExternalTextureMailbox m_mailbox; blink 204 Source/platform/graphics/gpu/DrawingBufferTest.cpp blink::WebExternalTextureMailbox mailbox1; blink 205 Source/platform/graphics/gpu/DrawingBufferTest.cpp blink::WebExternalTextureMailbox mailbox2; blink 206 Source/platform/graphics/gpu/DrawingBufferTest.cpp blink::WebExternalTextureMailbox mailbox3; blink 227 Source/platform/graphics/gpu/DrawingBufferTest.cpp blink::WebExternalTextureMailbox recycledMailbox; blink 26 Source/platform/graphics/gpu/Extensions3DUtil.cpp Extensions3DUtil::Extensions3DUtil(blink::WebGraphicsContext3D* context) blink 15 Source/platform/graphics/gpu/Extensions3DUtil.h namespace blink { blink 23 Source/platform/graphics/gpu/Extensions3DUtil.h Extensions3DUtil(blink::WebGraphicsContext3D*); blink 35 Source/platform/graphics/gpu/Extensions3DUtil.h blink::WebGraphicsContext3D* m_context; blink 46 Source/platform/graphics/gpu/WebGLImageBufferSurface.cpp m_contextProvider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 38 Source/platform/graphics/gpu/WebGLImageBufferSurface.h namespace blink { blink 66 Source/platform/graphics/gpu/WebGLImageBufferSurface.h OwnPtr<blink::WebGraphicsContext3DProvider> m_contextProvider; blink 35 Source/platform/graphics/media/MediaPlayer.h namespace blink { blink 93 Source/platform/graphics/media/MediaPlayer.h virtual void mediaPlayerSetWebLayer(blink::WebLayer*) = 0; blink 96 Source/platform/graphics/media/MediaPlayer.h virtual void mediaPlayerDidAddTextTrack(blink::WebInbandTextTrack*) = 0; blink 97 Source/platform/graphics/media/MediaPlayer.h virtual void mediaPlayerDidRemoveTextTrack(blink::WebInbandTextTrack*) = 0; blink 99 Source/platform/graphics/media/MediaPlayer.h virtual void mediaPlayerMediaSourceOpened(blink::WebMediaSource*) = 0; blink 115 Source/platform/graphics/media/MediaPlayer.h virtual void load(blink::WebMediaPlayer::LoadType, const String& url, blink::WebMediaPlayer::CORSMode) = 0; blink 153 Source/platform/graphics/media/MediaPlayer.h virtual bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject, GC3Dint, GC3Denum, GC3Denum, bool, bool) = 0; blink 179 Source/platform/graphics/media/MediaPlayer.h virtual blink::WebMediaPlayer* webMediaPlayer() const = 0; blink 445 Source/platform/graphics/skia/NativeImageSkia.cpp blink::WebBlendMode blendMode, blink 133 Source/platform/graphics/skia/NativeImageSkia.h blink::WebBlendMode, blink 81 Source/platform/graphics/skia/SkiaUtils.cpp PassRefPtr<SkXfermode> WebCoreCompositeToSkiaComposite(CompositeOperator op, blink::WebBlendMode blendMode) blink 83 Source/platform/graphics/skia/SkiaUtils.cpp if (blendMode != blink::WebBlendModeNormal) { blink 54 Source/platform/graphics/skia/SkiaUtils.h PassRefPtr<SkXfermode> WebCoreCompositeToSkiaComposite(CompositeOperator, blink::WebBlendMode = blink::WebBlendModeNormal); blink 32 Source/platform/graphics/test/MockWebGraphicsContext3D.h namespace blink { blink 41 Source/platform/heap/glue/MessageLoopInterruptor.h explicit MessageLoopInterruptor(blink::WebThread* thread) : m_thread(thread) { } blink 54 Source/platform/heap/glue/MessageLoopInterruptor.h class GCTask : public blink::WebThread::Task { blink 68 Source/platform/heap/glue/MessageLoopInterruptor.h blink::WebThread* m_thread; blink 39 Source/platform/heap/glue/PendingGCRunner.h class PendingGCRunner : public blink::WebThread::TaskObserver { blink 89 Source/platform/image-decoders/ImageDecoder.cpp size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes(); blink 60 Source/platform/image-decoders/ImageDecoder.h static const size_t noDecodedImageByteLimit = blink::Platform::noDecodedImageByteLimit; blink 47 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp using namespace blink; blink 48 Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp using namespace blink; blink 49 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp using namespace blink; blink 59 Source/platform/mediastream/MediaStreamCenter.cpp : m_private(adoptPtr(blink::Platform::current()->createMediaStreamCenter(this))) blink 115 Source/platform/mediastream/MediaStreamCenter.cpp blink::WebMediaStream webStream(stream); blink 122 Source/platform/mediastream/MediaStreamCenter.cpp blink::WebMediaStream WebMediaStream(stream); blink 144 Source/platform/mediastream/MediaStreamCenter.cpp void MediaStreamCenter::stopLocalMediaStream(const blink::WebMediaStream& webStream) blink 41 Source/platform/mediastream/MediaStreamCenter.h namespace blink { blink 54 Source/platform/mediastream/MediaStreamCenter.h class PLATFORM_EXPORT MediaStreamCenter FINAL : public blink::WebMediaStreamCenterClient { blink 75 Source/platform/mediastream/MediaStreamCenter.h virtual void stopLocalMediaStream(const blink::WebMediaStream&) OVERRIDE; blink 80 Source/platform/mediastream/MediaStreamCenter.h OwnPtr<blink::WebMediaStreamCenter> m_private; blink 62 Source/platform/mediastream/MediaStreamComponent.cpp void MediaStreamComponent::AudioSourceProviderImpl::wrap(blink::WebAudioSourceProvider* provider) blink 82 Source/platform/mediastream/MediaStreamComponent.cpp blink::WebVector<float*> webAudioData(n); blink 42 Source/platform/mediastream/MediaStreamComponent.h namespace blink { blink 69 Source/platform/mediastream/MediaStreamComponent.h void setSourceProvider(blink::WebAudioSourceProvider* provider) { m_sourceProvider.wrap(provider); } blink 92 Source/platform/mediastream/MediaStreamComponent.h void wrap(blink::WebAudioSourceProvider*); blink 98 Source/platform/mediastream/MediaStreamComponent.h blink::WebAudioSourceProvider* m_webAudioSourceProvider; blink 86 Source/platform/mediastream/MediaStreamSource.h void setConstraints(blink::WebMediaConstraints constraints) { m_constraints = constraints; } blink 87 Source/platform/mediastream/MediaStreamSource.h blink::WebMediaConstraints constraints() { return m_constraints; } blink 109 Source/platform/mediastream/MediaStreamSource.h blink::WebMediaConstraints m_constraints; blink 35 Source/platform/mediastream/MediaStreamTrackSourcesRequest.h namespace blink { blink 51 Source/platform/mediastream/MediaStreamTrackSourcesRequest.h virtual void requestSucceeded(const blink::WebVector<blink::WebSourceInfo>&) = 0; blink 42 Source/platform/mediastream/MediaStreamWebAudioSource.cpp MediaStreamWebAudioSource::MediaStreamWebAudioSource(PassOwnPtr<blink::WebAudioSourceProvider> provider) blink 64 Source/platform/mediastream/MediaStreamWebAudioSource.cpp blink::WebVector<float*> webAudioData(n); blink 40 Source/platform/mediastream/MediaStreamWebAudioSource.h namespace blink { blink 49 Source/platform/mediastream/MediaStreamWebAudioSource.h static PassOwnPtr<MediaStreamWebAudioSource> create(PassOwnPtr<blink::WebAudioSourceProvider> provider) { return adoptPtr(new MediaStreamWebAudioSource(provider)); } blink 54 Source/platform/mediastream/MediaStreamWebAudioSource.h explicit MediaStreamWebAudioSource(PassOwnPtr<blink::WebAudioSourceProvider>); blink 59 Source/platform/mediastream/MediaStreamWebAudioSource.h OwnPtr<blink::WebAudioSourceProvider> m_webAudioSourceProvider; blink 38 Source/platform/mediastream/RTCSessionDescriptionRequest.h namespace blink { blink 53 Source/platform/mediastream/RTCSessionDescriptionRequest.h virtual void requestSucceeded(const blink::WebRTCSessionDescription&) = 0; blink 37 Source/platform/network/DNS.cpp blink::WebPrescientNetworking* prescientNetworking = blink::Platform::current()->prescientNetworking(); blink 41 Source/platform/network/ResourceError.cpp return blink::Platform::current()->cancelledError(KURL(ParsedURLString, failingURL)); blink 62 Source/platform/network/SocketStreamHandle.cpp m_socket = adoptPtr(blink::Platform::current()->createSocketStreamHandle()); blink 86 Source/platform/network/SocketStreamHandle.cpp blink::WebData webdata(data, len); blink 103 Source/platform/network/SocketStreamHandle.cpp void SocketStreamHandleInternal::didOpenStream(blink::WebSocketStreamHandle* socketHandle, int maxPendingSendAllowed) blink 119 Source/platform/network/SocketStreamHandle.cpp void SocketStreamHandleInternal::didSendData(blink::WebSocketStreamHandle* socketHandle, int amountSent) blink 131 Source/platform/network/SocketStreamHandle.cpp void SocketStreamHandleInternal::didReceiveData(blink::WebSocketStreamHandle* socketHandle, const blink::WebData& data) blink 141 Source/platform/network/SocketStreamHandle.cpp void SocketStreamHandleInternal::didClose(blink::WebSocketStreamHandle* socketHandle) blink 154 Source/platform/network/SocketStreamHandle.cpp void SocketStreamHandleInternal::didFail(blink::WebSocketStreamHandle* socketHandle, const blink::WebSocketStreamError& err) blink 39 Source/platform/network/SocketStreamHandleInternal.h namespace blink { blink 47 Source/platform/network/SocketStreamHandleInternal.h class PLATFORM_EXPORT SocketStreamHandleInternal : public blink::WebSocketStreamHandleClient { blink 60 Source/platform/network/SocketStreamHandleInternal.h virtual void didOpenStream(blink::WebSocketStreamHandle*, int); blink 61 Source/platform/network/SocketStreamHandleInternal.h virtual void didSendData(blink::WebSocketStreamHandle*, int); blink 62 Source/platform/network/SocketStreamHandleInternal.h virtual void didReceiveData(blink::WebSocketStreamHandle*, const blink::WebData&); blink 63 Source/platform/network/SocketStreamHandleInternal.h virtual void didClose(blink::WebSocketStreamHandle*); blink 64 Source/platform/network/SocketStreamHandleInternal.h virtual void didFail(blink::WebSocketStreamHandle*, const blink::WebSocketStreamError&); blink 66 Source/platform/network/SocketStreamHandleInternal.h static blink::WebSocketStreamHandle* toWebSocketStreamHandle(SocketStreamHandle* handle) blink 77 Source/platform/network/SocketStreamHandleInternal.h OwnPtr<blink::WebSocketStreamHandle> m_socket; blink 48 Source/platform/plugins/PluginData.cpp blink::Platform::current()->getPluginList(m_refresh, &builder); blink 38 Source/platform/plugins/PluginListBuilder.cpp void PluginListBuilder::addPlugin(const blink::WebString& name, const blink::WebString& description, const blink::WebString& fileName) blink 47 Source/platform/plugins/PluginListBuilder.cpp void PluginListBuilder::addMediaTypeToLastPlugin(const blink::WebString& name, const blink::WebString& description) blink 55 Source/platform/plugins/PluginListBuilder.cpp void PluginListBuilder::addFileExtensionToLastMediaType(const blink::WebString& extension) blink 40 Source/platform/plugins/PluginListBuilder.h class PluginListBuilder FINAL : public blink::WebPluginListBuilder { blink 45 Source/platform/plugins/PluginListBuilder.h virtual void addPlugin(const blink::WebString& name, const blink::WebString& description, const blink::WebString& fileName) OVERRIDE; blink 46 Source/platform/plugins/PluginListBuilder.h virtual void addMediaTypeToLastPlugin(const blink::WebString& name, const blink::WebString& description) OVERRIDE; blink 47 Source/platform/plugins/PluginListBuilder.h virtual void addFileExtensionToLastMediaType(const blink::WebString& extension) OVERRIDE; blink 134 Source/platform/scroll/ScrollView.cpp blink::WebLayer* layer = layerForScrolling()->platformLayer(); blink 211 Source/platform/scroll/ScrollbarTheme.cpp blink::Platform::current()->themeEngine()->paint(context->canvas(), blink::WebThemeEngine::PartScrollbarCorner, blink::WebThemeEngine::StateNormal, blink::WebRect(cornerRect), 0); blink 226 Source/platform/scroll/ScrollbarTheme.cpp return blink::Platform::current()->scrollbarBehavior()->shouldCenterOnThumb(static_cast<blink::WebScrollbarBehavior::Button>(evt.button()), evt.shiftKey(), evt.altKey()); blink 233 Source/platform/scroll/ScrollbarTheme.cpp return blink::Platform::current()->scrollbarBehavior()->shouldSnapBackToDragOrigin(mousePosition, trackRect(scrollbar), scrollbar->orientation() == HorizontalScrollbar); blink 68 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp IntSize scrollbarSize = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrollbarVerticalTrack); blink 74 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebThemeEngine::State state = scrollbar->hoveredPart() == partType ? blink::WebThemeEngine::StateHover : blink::WebThemeEngine::StateNormal; blink 77 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StateDisabled; blink 80 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebThemeEngine::ExtraParams extraParams; blink 81 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebCanvas* canvas = gc->canvas(); blink 87 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::Platform::current()->themeEngine()->paint(canvas, scrollbar->orientation() == HorizontalScrollbar ? blink::WebThemeEngine::PartScrollbarHorizontalTrack : blink::WebThemeEngine::PartScrollbarVerticalTrack, state, blink::WebRect(rect), &extraParams); blink 92 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebThemeEngine::Part paintPart; blink 93 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebThemeEngine::State state = blink::WebThemeEngine::StateNormal; blink 94 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebCanvas* canvas = gc->canvas(); blink 100 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp paintPart = blink::WebThemeEngine::PartScrollbarLeftArrow; blink 105 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp paintPart = blink::WebThemeEngine::PartScrollbarRightArrow; blink 110 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp paintPart = blink::WebThemeEngine::PartScrollbarUpArrow; blink 115 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp paintPart = blink::WebThemeEngine::PartScrollbarDownArrow; blink 120 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StateDisabled; blink 123 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StateDisabled; blink 126 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StatePressed; blink 128 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StateHover; blink 130 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::Platform::current()->themeEngine()->paint(canvas, paintPart, state, blink::WebRect(rect), 0); blink 135 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebThemeEngine::State state; blink 136 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::WebCanvas* canvas = gc->canvas(); blink 138 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StatePressed; blink 140 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StateHover; blink 142 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp state = blink::WebThemeEngine::StateNormal; blink 143 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp blink::Platform::current()->themeEngine()->paint(canvas, scrollbar->orientation() == HorizontalScrollbar ? blink::WebThemeEngine::PartScrollbarHorizontalThumb : blink::WebThemeEngine::PartScrollbarVerticalThumb, state, blink::WebRect(rect), 0); blink 149 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrollbarUpArrow); blink 154 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrollbarLeftArrow); blink 161 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrollbarVerticalThumb); blink 165 Source/platform/scroll/ScrollbarThemeGtkOrAura.cpp IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrollbarHorizontalThumb); blink 141 Source/platform/scroll/ScrollbarThemeOverlay.cpp blink::WebThemeEngine::State state = blink::WebThemeEngine::StateNormal; blink 143 Source/platform/scroll/ScrollbarThemeOverlay.cpp state = blink::WebThemeEngine::StatePressed; blink 145 Source/platform/scroll/ScrollbarThemeOverlay.cpp state = blink::WebThemeEngine::StateHover; blink 147 Source/platform/scroll/ScrollbarThemeOverlay.cpp blink::WebCanvas* canvas = context->canvas(); blink 149 Source/platform/scroll/ScrollbarThemeOverlay.cpp blink::WebThemeEngine::Part part = blink::WebThemeEngine::PartScrollbarHorizontalThumb; blink 151 Source/platform/scroll/ScrollbarThemeOverlay.cpp part = blink::WebThemeEngine::PartScrollbarVerticalThumb; blink 153 Source/platform/scroll/ScrollbarThemeOverlay.cpp blink::Platform::current()->themeEngine()->paint(canvas, part, state, blink::WebRect(rect), 0); blink 50 Source/platform/speech/PlatformSpeechSynthesizer.cpp m_webSpeechSynthesizer = adoptPtr(blink::Platform::current()->createSpeechSynthesizer(m_webSpeechSynthesizerClient.get())); blink 62 Source/platform/speech/PlatformSpeechSynthesizer.cpp m_webSpeechSynthesizer->speak(blink::WebSpeechSynthesisUtterance(utterance)); blink 34 Source/platform/speech/PlatformSpeechSynthesizer.h namespace blink { blink 86 Source/platform/speech/PlatformSpeechSynthesizer.h OwnPtr<blink::WebSpeechSynthesizer> m_webSpeechSynthesizer; blink 87 Source/platform/speech/PlatformSpeechSynthesizer.h OwnPtr<blink::WebSpeechSynthesizerClient> m_webSpeechSynthesizerClient; blink 41 Source/platform/text/PlatformLocale.cpp using blink::Platform; blink 42 Source/platform/text/PlatformLocale.cpp using blink::WebLocalizedString; blink 43 Source/platform/text/PlatformLocale.h String queryString(blink::WebLocalizedString::Name); blink 44 Source/platform/text/PlatformLocale.h String queryString(blink::WebLocalizedString::Name, const String& parameter); blink 45 Source/platform/text/PlatformLocale.h String queryString(blink::WebLocalizedString::Name, const String& parameter1, const String& parameter2); blink 54 Source/platform/weborigin/OriginAccessEntry.cpp blink::WebPublicSuffixList* suffixList = blink::Platform::current()->publicSuffixList(); blink 45 Source/platform/weborigin/OriginAccessEntryTest.cpp class OriginAccessEntryTestSuffixList : public blink::WebPublicSuffixList { blink 47 Source/platform/weborigin/OriginAccessEntryTest.cpp virtual size_t getPublicSuffixLength(const blink::WebString&) blink 53 Source/platform/weborigin/OriginAccessEntryTest.cpp class OriginAccessEntryTestPlatform : public blink::Platform { blink 55 Source/platform/weborigin/OriginAccessEntryTest.cpp virtual blink::WebPublicSuffixList* publicSuffixList() blink 70 Source/platform/weborigin/OriginAccessEntryTest.cpp blink::Platform::initialize(&platform); blink 80 Source/platform/weborigin/OriginAccessEntryTest.cpp blink::Platform::shutdown(); blink 135 Source/web/AssertMatchingEnums.cpp COMPILE_ASSERT(int(blink::webkit_name) == int(WebCore::webcore_name), mismatching_enums) blink 138 Source/web/AssertMatchingEnums.cpp COMPILE_ASSERT(blink::webkit_name == WebCore::webcore_name, mismatching_enums) blink 307 Source/web/AssociatedURLLoader.cpp COMPILE_ASSERT(static_cast<int>(blink::webkit_name) == static_cast<int>(WebCore::webcore_name), mismatching_enums) blink 42 Source/web/AssociatedURLLoader.h namespace blink { blink 36 Source/web/BackForwardClientImpl.h namespace blink { blink 811 Source/web/ChromeClientImpl.cpp blink::Platform::current()->histogramEnumeration("Renderer.ModalDialogsDuringPageDismissal", dismissal * arraysize(kDialogs) + dialog, arraysize(kDialogs) * arraysize(kDismissals)); blink 62 Source/web/ChromeClientImpl.h namespace blink { blink 38 Source/web/ColorChooserPopupUIController.h namespace blink { blink 38 Source/web/ColorChooserUIController.h namespace blink { blink 39 Source/web/CompositionUnderlineBuilder.h namespace blink { blink 39 Source/web/CompositionUnderlineVectorBuilder.h namespace blink { blink 36 Source/web/ContextFeaturesClientImpl.h namespace blink { blink 36 Source/web/ContextMenuClientImpl.h namespace blink { blink 37 Source/web/DatabaseClientImpl.h namespace blink { blink 43 Source/web/DateTimeChooserImpl.h namespace blink { blink 45 Source/web/DragClientImpl.h namespace blink { blink 42 Source/web/EditorClientImpl.h namespace blink { blink 40 Source/web/EventListenerWrapper.h namespace blink { blink 36 Source/web/ExternalDateTimeChooser.h namespace blink { blink 49 Source/web/ExternalPopupMenu.h namespace blink { blink 41 Source/web/FindInPageCoordinates.h namespace blink { blink 345 Source/web/FrameLoaderClientImpl.cpp m_webFrame->client()->didChangeResourcePriority(m_webFrame, identifier, static_cast<blink::WebURLRequest::Priority>(priority), intraPriorityValue); blink 589 Source/web/FrameLoaderClientImpl.cpp return blink::Platform::current()->userAgent(); blink 752 Source/web/FrameLoaderClientImpl.cpp void FrameLoaderClientImpl::dispatchWillStartUsingPeerConnectionHandler(blink::WebRTCPeerConnectionHandler* handler) blink 40 Source/web/FrameLoaderClientImpl.h namespace blink { blink 146 Source/web/FrameLoaderClientImpl.h virtual void dispatchWillStartUsingPeerConnectionHandler(blink::WebRTCPeerConnectionHandler*) OVERRIDE; blink 43 Source/web/FullscreenController.h namespace blink { blink 37 Source/web/GeolocationClientProxy.h namespace blink { blink 31 Source/web/GraphicsLayerFactoryChromium.h namespace blink { blink 38 Source/web/IDBFactoryBackendProxy.h namespace blink { blink 39 Source/web/InspectorClientImpl.h namespace blink { blink 42 Source/web/InspectorFrontendClientImpl.h namespace blink { blink 293 Source/web/LinkHighlight.cpp curve->add(WebFloatKeyframe(fadeDuration + extraDurationRequired, blink::layoutTestMode() ? startOpacity : 0)); blink 312 Source/web/LinkHighlight.cpp void LinkHighlight::notifyAnimationStarted(double, blink::WebAnimation::TargetProperty) blink 316 Source/web/LinkHighlight.cpp void LinkHighlight::notifyAnimationFinished(double, blink::WebAnimation::TargetProperty) blink 46 Source/web/LinkHighlight.h namespace blink { blink 66 Source/web/LinkHighlight.h virtual void notifyAnimationStarted(double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE; blink 67 Source/web/LinkHighlight.h virtual void notifyAnimationFinished(double monotonicTime, blink::WebAnimation::TargetProperty) OVERRIDE; blink 37 Source/web/LocalFileSystemClient.h namespace blink { blink 41 Source/web/MIDIClientProxy.h namespace blink { blink 11 Source/web/MediaKeysClientImpl.h namespace blink { blink 38 Source/web/NotificationPresenterImpl.h namespace blink { blink 41 Source/web/PageOverlay.h namespace blink { blink 41 Source/web/PageOverlayList.h namespace blink { blink 39 Source/web/PageScaleConstraintsSet.h namespace blink { blink 44 Source/web/PageWidgetDelegate.h namespace blink { blink 45 Source/web/PopupContainer.h namespace blink { blink 51 Source/web/PopupListBox.h namespace blink { blink 43 Source/web/PopupMenuChromium.h namespace blink { blink 43 Source/web/PrerendererClientImpl.h namespace blink { blink 37 Source/web/ScrollbarGroup.h namespace blink { blink 37 Source/web/ServiceWorkerGlobalScopeClientImpl.h namespace blink { blink 43 Source/web/ServiceWorkerGlobalScopeProxy.h namespace blink { blink 120 Source/web/SharedWorkerRepositoryClientImpl.cpp OwnPtr<WebSharedWorkerConnector> webWorkerConnector = adoptPtr(m_client->createSharedWorkerConnector(url, name, getId(document), worker->executionContext()->contentSecurityPolicy()->deprecatedHeader(), static_cast<blink::WebContentSecurityPolicyType>(worker->executionContext()->contentSecurityPolicy()->deprecatedHeaderType()))); blink 39 Source/web/SharedWorkerRepositoryClientImpl.h namespace blink { blink 47 Source/web/SpeechInputClientImpl.h namespace blink { blink 35 Source/web/SpeechRecognitionClientProxy.h namespace blink { blink 42 Source/web/SpellCheckerClientImpl.h namespace blink { blink 10 Source/web/StorageClientImpl.h namespace blink { blink 37 Source/web/StorageQuotaClientImpl.h namespace blink { blink 50 Source/web/TextFinder.h namespace blink { blink 272 Source/web/TextFinder.h template <> struct VectorTraits<blink::TextFinder::FindMatch> : VectorTraitsBase<blink::TextFinder::FindMatch> { blink 42 Source/web/UserMediaClientImpl.h namespace blink { blink 38 Source/web/ValidationMessageClientImpl.h namespace blink { blink 46 Source/web/ViewportAnchor.h namespace blink { blink 65 Source/web/WebAXObject.cpp void WebAXObject::assign(const blink::WebAXObject& other) blink 699 Source/web/WebAXObject.cpp return blink::WebAXRoleUnknown; blink 41 Source/web/WebDOMEventListenerPrivate.h namespace blink { blink 44 Source/web/WebDataSourceImpl.h namespace blink { blink 110 Source/web/WebDevToolsAgentImpl.cpp ClientMessageLoopAdapter(PassOwnPtr<blink::WebDevToolsAgentClient::WebKitClientMessageLoop> messageLoop) blink 169 Source/web/WebDevToolsAgentImpl.cpp OwnPtr<blink::WebDevToolsAgentClient::WebKitClientMessageLoop> m_messageLoop; blink 217 Source/web/WebDevToolsAgentImpl.cpp blink::Platform::current()->currentThread()->removeTaskObserver(this); blink 227 Source/web/WebDevToolsAgentImpl.cpp blink::Platform::current()->currentThread()->addTaskObserver(this); blink 237 Source/web/WebDevToolsAgentImpl.cpp blink::Platform::current()->currentThread()->addTaskObserver(this); blink 243 Source/web/WebDevToolsAgentImpl.cpp blink::Platform::current()->currentThread()->removeTaskObserver(this); blink 56 Source/web/WebDevToolsAgentImpl.h namespace blink { blink 36 Source/web/WebDevToolsAgentPrivate.h namespace blink { blink 42 Source/web/WebDevToolsFrontendImpl.h namespace blink { blink 50 Source/web/WebDevToolsFrontendImpl.h class WebDevToolsFrontendImpl FINAL : public blink::WebDevToolsFrontend { blink 54 Source/web/WebDevToolsFrontendImpl.h blink::WebViewImpl* webViewImpl, blink 55 Source/web/WebDevToolsFrontendImpl.h blink::WebDevToolsFrontendClient* client, blink 68 Source/web/WebDevToolsFrontendImpl.h blink::WebViewImpl* m_webViewImpl; blink 69 Source/web/WebDevToolsFrontendImpl.h blink::WebDevToolsFrontendClient* m_client; blink 44 Source/web/WebEmbeddedWorkerImpl.h namespace blink { blink 37 Source/web/WebEntities.h namespace blink { blink 40 Source/web/WebFileChooserCompletionImpl.h using blink::WebFileChooserCompletion; blink 41 Source/web/WebFileChooserCompletionImpl.h using blink::WebString; blink 42 Source/web/WebFileChooserCompletionImpl.h using blink::WebVector; blink 44 Source/web/WebFileChooserCompletionImpl.h namespace blink { blink 39 Source/web/WebFontImpl.h namespace blink { blink 1652 Source/web/WebFrameImpl.cpp blink::Platform::current()->incrementStatsCounter(webFrameActiveCount); blink 1662 Source/web/WebFrameImpl.cpp blink::Platform::current()->decrementStatsCounter(webFrameActiveCount); blink 59 Source/web/WebFrameImpl.h namespace blink { blink 45 Source/web/WebGeolocationPermissionRequestManager.cpp int WebGeolocationPermissionRequestManager::add(const blink::WebGeolocationPermissionRequest& permissionRequest) blink 55 Source/web/WebGeolocationPermissionRequestManager.cpp bool WebGeolocationPermissionRequestManager::remove(const blink::WebGeolocationPermissionRequest& permissionRequest, int& id) blink 67 Source/web/WebGeolocationPermissionRequestManager.cpp bool WebGeolocationPermissionRequestManager::remove(int id, blink::WebGeolocationPermissionRequest& permissionRequest) blink 46 Source/web/WebHelperPluginImpl.h namespace blink { blink 56 Source/web/WebImageDecoder.cpp size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes(); blink 52 Source/web/WebInputEventConversion.h namespace blink { blink 54 Source/web/WebInputEventFactoryGtk.cpp static blink::WebMouseEvent::Button gLastClickButton = blink::WebMouseEvent::ButtonNone; blink 80 Source/web/WebInputEventFactoryGtk.cpp gLastClickButton = blink::WebMouseEvent::ButtonNone; blink 425 Source/web/WebInputEventFactoryGtk.cpp result.type = blink::WebInputEvent::Char; blink 188 Source/web/WebKit.cpp WebCore::setIDBFactoryBackendInterfaceCreateFunction(blink::IDBFactoryBackendProxy::create); blink 190 Source/web/WebKit.cpp WebCore::MediaPlayer::setMediaEngineCreateFunction(blink::WebMediaPlayerClientImpl::create); blink 49 Source/web/WebLeakDetector.cpp void cleanUpDOMObjects(blink::WebFrame* frame) blink 66 Source/web/WebLeakDetector.cpp void numberOfDOMObjects(blink::WebFrame *frame, unsigned* numberOfLiveDocuments, unsigned* numberOfLiveNodes) blink 149 Source/web/WebMediaPlayerClientImpl.cpp void WebMediaPlayerClientImpl::setWebLayer(blink::WebLayer* layer) blink 463 Source/web/WebMediaPlayerClientImpl.cpp OwnPtr<blink::WebGraphicsContext3DProvider> provider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider()); blink 54 Source/web/WebMediaPlayerClientImpl.h namespace blink { blink 159 Source/web/WebMediaPlayerClientImpl.h class AudioClientImpl FINAL : public blink::WebAudioSourceProviderClient { blink 47 Source/web/WebPagePopupImpl.h namespace blink { blink 111 Source/web/WebPageSerializer.cpp const blink::WebVector<blink::WebCString>& supportedSchemes, blink 57 Source/web/WebPageSerializerImpl.h namespace blink { blink 43 Source/web/WebPasswordFormUtils.h namespace blink { blink 360 Source/web/WebPluginContainerImpl.cpp blink::Platform::current()->clipboard()->writeHTML(m_webPlugin->selectionAsMarkup(), WebURL(), m_webPlugin->selectionAsText(), false); blink 59 Source/web/WebPluginContainerImpl.h namespace blink { blink 36 Source/web/WebPluginLoadObserver.h namespace blink { blink 39 Source/web/WebPluginScrollbarImpl.h namespace blink { blink 52 Source/web/WebPopupMenuImpl.h namespace blink { blink 41 Source/web/WebSettingsImpl.h namespace blink { blink 52 Source/web/WebSharedWorkerImpl.h namespace blink { blink 43 Source/web/WebSocketImpl.h namespace blink { blink 38 Source/web/WebTextCheckingCompletionImpl.h namespace blink { blink 1750 Source/web/WebViewImpl.cpp blink::Platform::current()->histogramCustomCounts("Renderer4.SoftwarePaintDurationMS", (paintEnd - paintStart) * 1000, 0, 120, 30); blink 1751 Source/web/WebViewImpl.cpp blink::Platform::current()->histogramCustomCounts("Renderer4.SoftwarePaintMegapixPerSecond", pixelsPerSec / 1000000, 10, 210, 30); blink 3715 Source/web/WebViewImpl.cpp blink::Platform::current()->histogramEnumeration("GPU.setIsAcceleratedCompositingActive", active * 2 + m_isAcceleratedCompositingActive, 4); blink 3729 Source/web/WebViewImpl.cpp && blink::Platform::current()->isThreadedCompositingEnabled()) { blink 80 Source/web/WebViewImpl.h namespace blink { blink 43 Source/web/WorkerGlobalScopeProxyProviderImpl.h namespace blink { blink 41 Source/web/WorkerPermissionClient.h namespace blink { blink 36 Source/web/painting/ContinuousPainter.h namespace blink { blink 238 Source/web/painting/PaintAggregator.cpp blink::Platform::current()->histogramCustomCounts("MPArch.RW_IntermediatePaintRectCount", blink 38 Source/web/painting/PaintAggregator.h namespace blink { blink 52 Source/web/tests/AssociatedURLLoaderTest.cpp using namespace blink; blink 53 Source/web/tests/AssociatedURLLoaderTest.cpp using blink::URLTestHelpers::toKURL; blink 212 Source/web/tests/AssociatedURLLoaderTest.cpp request.setHTTPReferrer(WebString::fromUTF8(headerValue), blink::WebReferrerPolicyDefault); blink 42 Source/web/tests/ChromeClientImplTest.cpp using namespace blink; blink 46 Source/web/tests/CompositedLayerMappingTest.cpp using namespace blink; blink 52 Source/web/tests/CustomEventTest.cpp using namespace blink; blink 36 Source/web/tests/FakeWebPlugin.h namespace blink { blink 48 Source/web/tests/FakeWebPlugin.h FakeWebPlugin(blink::WebFrame*, const blink::WebPluginParams&); blink 51 Source/web/tests/FakeWebPlugin.h virtual bool initialize(blink::WebPluginContainer*) OVERRIDE; blink 55 Source/web/tests/FakeWebPlugin.h virtual void paint(blink::WebCanvas*, const blink::WebRect&) OVERRIDE { } blink 56 Source/web/tests/FakeWebPlugin.h virtual void updateGeometry(const blink::WebRect& frameRect, const blink::WebRect& clipRect, const blink::WebVector<blink::WebRect>& cutOutsRects, bool isVisible) OVERRIDE { } blink 60 Source/web/tests/FakeWebPlugin.h virtual bool handleInputEvent(const blink::WebInputEvent&, blink::WebCursorInfo&) OVERRIDE { return false; } blink 61 Source/web/tests/FakeWebPlugin.h virtual bool handleDragStatusUpdate(blink::WebDragStatus, const blink::WebDragData&, blink::WebDragOperationsMask, const blink::WebPoint& position, const blink::WebPoint& screenPosition) OVERRIDE { return false; } blink 62 Source/web/tests/FakeWebPlugin.h virtual void didReceiveResponse(const blink::WebURLResponse&) OVERRIDE { } blink 65 Source/web/tests/FakeWebPlugin.h virtual void didFailLoading(const blink::WebURLError&) OVERRIDE { } blink 66 Source/web/tests/FakeWebPlugin.h virtual void didFinishLoadingFrameRequest(const blink::WebURL&, void* notifyData) OVERRIDE { } blink 67 Source/web/tests/FakeWebPlugin.h virtual void didFailLoadingFrameRequest(const blink::WebURL&, void* notifyData, const blink::WebURLError&) OVERRIDE { } blink 45 Source/web/tests/FrameLoaderClientImplTest.cpp using namespace blink; blink 39 Source/web/tests/FrameTestHelpers.h namespace blink { blink 45 Source/web/tests/KeyboardTest.cpp using namespace blink; blink 52 Source/web/tests/LinkHighlightTest.cpp using namespace blink; blink 42 Source/web/tests/ListenerLeakTest.cpp using namespace blink; blink 52 Source/web/tests/MHTMLTest.cpp using namespace blink; blink 57 Source/web/tests/MHTMLTest.cpp using blink::URLTestHelpers::toKURL; blink 52 Source/web/tests/PageSerializerTest.cpp using namespace blink; blink 53 Source/web/tests/PageSerializerTest.cpp using blink::FrameTestHelpers::runPendingTasks; blink 54 Source/web/tests/PageSerializerTest.cpp using blink::URLTestHelpers::toKURL; blink 55 Source/web/tests/PageSerializerTest.cpp using blink::URLTestHelpers::registerMockedURLLoad; blink 37 Source/web/tests/PaintAggregatorTest.cpp using namespace blink; blink 32 Source/web/tests/PopupContainerTest.cpp using namespace blink; blink 69 Source/web/tests/PopupMenuTest.cpp using namespace blink; blink 70 Source/web/tests/PopupMenuTest.cpp using blink::URLTestHelpers::toKURL; blink 56 Source/web/tests/PrerenderingTest.cpp using namespace blink; blink 57 Source/web/tests/PrerenderingTest.cpp using blink::URLTestHelpers::toKURL; blink 21 Source/web/tests/ProgrammaticScrollTest.cpp using namespace blink; blink 39 Source/web/tests/RenderTableCellTest.cpp using namespace blink; blink 39 Source/web/tests/RenderTableRowTest.cpp using namespace blink; blink 55 Source/web/tests/RunAllTests.cpp blink::InitTestSuite(argc, argv); blink 57 Source/web/tests/RunAllTests.cpp int result = blink::RunAllUnitTests(); blink 59 Source/web/tests/RunAllTests.cpp blink::DeleteTestSuite(); blink 47 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp using namespace blink; blink 83 Source/web/tests/SpinLockTest.cpp OwnPtr<blink::WebThread> thread1 = adoptPtr(blink::Platform::current()->createThread("thread1")); blink 84 Source/web/tests/SpinLockTest.cpp OwnPtr<blink::WebThread> thread2 = adoptPtr(blink::Platform::current()->createThread("thread2")); blink 60 Source/web/tests/TouchActionTest.cpp using namespace blink; blink 61 Source/web/tests/TouchActionTest.cpp using blink::FrameTestHelpers::runPendingTasks; blink 37 Source/web/tests/URLTestHelpers.h namespace blink { blink 58 Source/web/tests/ViewportTest.cpp using namespace blink; blink 67 Source/web/tests/ViewportTest.cpp using blink::FrameTestHelpers::runPendingTasks; blink 97 Source/web/tests/WebFrameTest.cpp using namespace blink; blink 104 Source/web/tests/WebFrameTest.cpp using blink::URLTestHelpers::toKURL; blink 105 Source/web/tests/WebFrameTest.cpp using blink::FrameTestHelpers::runPendingTasks; blink 2218 Source/web/tests/WebFrameTest.cpp void setScaleAndScrollAndLayout(blink::WebView* webView, WebPoint scroll, float scale) blink 4186 Source/web/tests/WebFrameTest.cpp virtual void requestCheckingOfText(const blink::WebString&, const blink::WebVector<uint32_t>&, const blink::WebVector<unsigned>&, blink::WebTextCheckingCompletion* completion) OVERRIDE blink 4293 Source/web/tests/WebFrameTest.cpp const blink::WebString&, blink 4294 Source/web/tests/WebFrameTest.cpp const blink::WebVector<uint32_t>&, blink 4295 Source/web/tests/WebFrameTest.cpp const blink::WebVector<unsigned>&, blink 4296 Source/web/tests/WebFrameTest.cpp blink::WebTextCheckingCompletion* completion) OVERRIDE blink 4333 Source/web/tests/WebFrameTest.cpp blink::WebTextCheckingCompletion* m_completion; blink 19 Source/web/tests/WebHelperPluginTest.cpp FakePlaceholderWebPlugin(blink::WebFrame* frame, const blink::WebPluginParams& params) blink 42 Source/web/tests/WebImageTest.cpp using namespace blink; blink 50 Source/web/tests/WebInputEventConversionTest.cpp using namespace blink; blink 63 Source/web/tests/WebInputEventConversionTest.cpp blink::WebKeyboardEventBuilder convertedEvent(*event); blink 42 Source/web/tests/WebInputEventFactoryTestGtk.cpp using blink::WebInputEvent; blink 43 Source/web/tests/WebInputEventFactoryTestGtk.cpp using blink::WebKeyboardEvent; blink 44 Source/web/tests/WebInputEventFactoryTestGtk.cpp using blink::WebMouseEvent; blink 45 Source/web/tests/WebInputEventFactoryTestGtk.cpp using blink::WebInputEventFactory; blink 195 Source/web/tests/WebInputEventFactoryTestGtk.cpp blink::PlatformKeyboardEventBuilder platformBuilder(webEvent); blink 199 Source/web/tests/WebInputEventFactoryTestGtk.cpp blink::WebKeyboardEventBuilder builder(*keypress); blink 51 Source/web/tests/WebPageNewSerializerTest.cpp using namespace blink; blink 53 Source/web/tests/WebPageNewSerializerTest.cpp using blink::FrameTestHelpers::runPendingTasks; blink 54 Source/web/tests/WebPageNewSerializerTest.cpp using blink::URLTestHelpers::toKURL; blink 55 Source/web/tests/WebPageNewSerializerTest.cpp using blink::URLTestHelpers::registerMockedURLLoad; blink 49 Source/web/tests/WebPageSerializerTest.cpp using namespace blink; blink 51 Source/web/tests/WebPageSerializerTest.cpp using blink::URLTestHelpers::toKURL; blink 54 Source/web/tests/WebPluginContainerTest.cpp using namespace blink; blink 38 Source/web/tests/WebScopedWindowFocusAllowedIndicatorTest.cpp using namespace blink; blink 45 Source/web/tests/WebSearchableFormDataTest.cpp using namespace blink; blink 38 Source/web/tests/WebSelectorTest.cpp using namespace blink; blink 37 Source/web/tests/WebURLRequestTest.cpp using namespace blink; blink 37 Source/web/tests/WebURLResponseTest.cpp using namespace blink; blink 36 Source/web/tests/WebUnitTests.h namespace blink { blink 40 Source/web/tests/WebUserGestureTokenTest.cpp using namespace blink; blink 74 Source/web/tests/WebViewTest.cpp using namespace blink; blink 75 Source/web/tests/WebViewTest.cpp using blink::FrameTestHelpers::runPendingTasks; blink 76 Source/web/tests/WebViewTest.cpp using blink::URLTestHelpers::toKURL; blink 638 Source/web/tests/WebViewTest.cpp underlines[0] = blink::WebCompositionUnderline(0, 4, 0, false); blink 665 Source/web/tests/WebViewTest.cpp underlines[0] = blink::WebCompositionUnderline(0, 4, 0, false); blink 853 Source/web/tests/WebViewTest.cpp blink::WebDragData dragData; blink 864 Source/web/tests/WebViewTest.cpp webView->dragTargetDragEnter(dragData, clientPoint, screenPoint, blink::WebDragOperationCopy, 0); blink 55 public/platform/Platform.h namespace blink { blink 184 public/platform/Platform.h virtual long long databaseGetSpaceAvailableForOrigin(const blink::WebString& originIdentifier) { return 0; } blink 604 public/platform/Platform.h virtual void setDeviceMotionListener(blink::WebDeviceMotionListener*) { } blink 608 public/platform/Platform.h virtual void setDeviceOrientationListener(blink::WebDeviceOrientationListener*) { } blink 612 public/platform/Platform.h virtual void setScreenOrientationListener(blink::WebScreenOrientationListener*) { } blink 40 public/platform/WebAnimation.h namespace blink { blink 32 public/platform/WebAnimationCurve.h namespace blink { blink 32 public/platform/WebAnimationDelegate.h namespace blink { blink 38 public/platform/WebApplicationCacheHost.h namespace blink { blink 37 public/platform/WebApplicationCacheHostClient.h namespace blink { blink 48 public/platform/WebArrayBuffer.h namespace blink { blink 36 public/platform/WebAudioBus.h namespace blink { blink 30 public/platform/WebAudioDestinationConsumer.h namespace blink { blink 35 public/platform/WebAudioDevice.h namespace blink { blink 30 public/platform/WebAudioSourceProvider.h namespace blink { blink 28 public/platform/WebAudioSourceProviderClient.h namespace blink { blink 36 public/platform/WebBlendMode.h namespace blink { blink 45 public/platform/WebBlobData.h namespace blink { blink 11 public/platform/WebBlobInfo.h namespace blink { blink 36 public/platform/WebBlobRegistry.h namespace blink { blink 47 public/platform/WebBlobRegistry.h virtual void registerBlobData(const blink::WebString& uuid, const blink::WebBlobData&) { } blink 48 public/platform/WebBlobRegistry.h virtual void addBlobDataRef(const blink::WebString& uuid) { } blink 49 public/platform/WebBlobRegistry.h virtual void removeBlobDataRef(const blink::WebString& uuid) { } blink 50 public/platform/WebBlobRegistry.h virtual void registerPublicBlobURL(const blink::WebURL&, const blink::WebString& uuid) { } blink 51 public/platform/WebBlobRegistry.h virtual void revokePublicBlobURL(const blink::WebURL&) { } blink 49 public/platform/WebCString.h namespace blink { blink 34 public/platform/WebCallbacks.h namespace blink { blink 38 public/platform/WebCanvas.h namespace blink { blink 41 public/platform/WebClipboard.h namespace blink { blink 34 public/platform/WebColor.h namespace blink { blink 91 public/platform/WebCommon.h namespace blink { blink 29 public/platform/WebCompositorOutputSurface.h namespace blink { blink 35 public/platform/WebCompositorSupport.h namespace blink { blink 60 public/platform/WebCompositorSupport.h virtual WebCompositorOutputSurface* createOutputSurfaceFor3D(blink::WebGraphicsContext3D*) { return 0; } blink 36 public/platform/WebContentDecryptionModule.h namespace blink { blink 36 public/platform/WebContentDecryptionModuleSession.h namespace blink { blink 50 public/platform/WebContentDecryptionModuleSession.h virtual void message(const unsigned char* message, size_t messageLength, const blink::WebURL& destinationURL) = 0; blink 32 public/platform/WebContentLayer.h namespace blink { blink 32 public/platform/WebContentLayerClient.h namespace blink { blink 37 public/platform/WebCookie.h namespace blink { blink 36 public/platform/WebCookieJar.h namespace blink { blink 46 public/platform/WebCrypto.h namespace blink { blink 41 public/platform/WebCryptoAlgorithm.h namespace blink { blink 38 public/platform/WebCryptoAlgorithmParams.h namespace blink { blink 37 public/platform/WebCryptoKey.h namespace blink { blink 43 public/platform/WebCryptoKeyAlgorithm.h namespace blink { blink 41 public/platform/WebCryptoKeyAlgorithmParams.h namespace blink { blink 46 public/platform/WebCursorInfo.h namespace blink { blink 39 public/platform/WebData.h namespace blink { blink 34 public/platform/WebDatabaseObserver.h namespace blink { blink 40 public/platform/WebDeviceMotionData.h namespace blink { blink 34 public/platform/WebDeviceMotionListener.h namespace blink { blink 40 public/platform/WebDeviceOrientationData.h namespace blink { blink 34 public/platform/WebDeviceOrientationListener.h namespace blink { blink 29 public/platform/WebDiscardableMemory.h namespace blink { blink 41 public/platform/WebDragData.h namespace blink { blink 36 public/platform/WebExternalBitmap.h namespace blink { blink 33 public/platform/WebExternalTextureLayer.h namespace blink { blink 32 public/platform/WebExternalTextureLayerClient.h namespace blink { blink 34 public/platform/WebExternalTextureMailbox.h namespace blink { blink 38 public/platform/WebFallbackThemeEngine.h namespace blink { blink 33 public/platform/WebFileError.h namespace blink { blink 36 public/platform/WebFileInfo.h namespace blink { blink 39 public/platform/WebFileSystem.h namespace blink { blink 46 public/platform/WebFileSystemCallbacks.h namespace blink { blink 36 public/platform/WebFileSystemEntry.h namespace blink { blink 34 public/platform/WebFileSystemType.h namespace blink { blink 42 public/platform/WebFileUtilities.h namespace blink { blink 37 public/platform/WebFileWriter.h namespace blink { blink 37 public/platform/WebFileWriterClient.h namespace blink { blink 39 public/platform/WebFilterAnimationCurve.h namespace blink { blink 42 public/platform/WebFilterKeyframe.h namespace blink { blink 34 public/platform/WebFilterOperations.h namespace blink { blink 33 public/platform/WebFlingAnimator.h namespace blink { blink 33 public/platform/WebFloatAnimationCurve.h namespace blink { blink 28 public/platform/WebFloatKeyframe.h namespace blink { blink 42 public/platform/WebFloatPoint.h namespace blink { blink 45 public/platform/WebFloatQuad.h namespace blink { blink 44 public/platform/WebFloatRect.h namespace blink { blink 46 public/platform/WebFloatSize.h namespace blink { blink 33 public/platform/WebGamepad.h namespace blink { blink 8 public/platform/WebGamepadListener.h namespace blink { blink 14 public/platform/WebGamepadListener.h virtual void didConnectGamepad(unsigned index, const blink::WebGamepad&) = 0; blink 15 public/platform/WebGamepadListener.h virtual void didDisconnectGamepad(unsigned index, const blink::WebGamepad&) = 0; blink 35 public/platform/WebGamepads.h namespace blink { blink 28 public/platform/WebGestureCurve.h namespace blink { blink 31 public/platform/WebGestureCurveTarget.h namespace blink { blink 40 public/platform/WebGraphicsContext3D.h namespace blink { blink 38 public/platform/WebGraphicsContext3DProvider.h namespace blink { blink 36 public/platform/WebGraphicsLayerDebugInfo.h namespace blink { blink 45 public/platform/WebHTTPBody.h namespace blink { blink 34 public/platform/WebHTTPHeaderVisitor.h namespace blink { blink 41 public/platform/WebHTTPLoadInfo.h namespace blink { blink 33 public/platform/WebIDBCallbacks.h namespace blink { blink 34 public/platform/WebIDBCursor.h namespace blink { blink 33 public/platform/WebIDBDatabase.h namespace blink { blink 33 public/platform/WebIDBDatabaseCallbacks.h namespace blink { blink 38 public/platform/WebIDBDatabaseError.h namespace blink { blink 34 public/platform/WebIDBDatabaseException.h namespace blink { blink 38 public/platform/WebIDBFactory.h namespace blink { blink 38 public/platform/WebIDBKey.h namespace blink { blink 37 public/platform/WebIDBKeyPath.h namespace blink { blink 34 public/platform/WebIDBKeyRange.h namespace blink { blink 38 public/platform/WebIDBMetadata.h namespace blink { blink 29 public/platform/WebIDBTypes.h namespace blink { blink 44 public/platform/WebImage.h namespace blink { blink 33 public/platform/WebImageLayer.h namespace blink { blink 36 public/platform/WebInbandTextTrack.h namespace blink { blink 34 public/platform/WebInbandTextTrackClient.h namespace blink { blink 42 public/platform/WebLayer.h namespace blink { blink 36 public/platform/WebLayerClient.h namespace blink { blink 29 public/platform/WebLayerPositionConstraint.h namespace blink { blink 30 public/platform/WebLayerScrollClient.h namespace blink { blink 38 public/platform/WebLayerTreeView.h namespace blink { blink 34 public/platform/WebLocalizedString.h namespace blink { blink 36 public/platform/WebMIDIAccessor.h namespace blink { blink 36 public/platform/WebMIDIAccessorClient.h namespace blink { blink 40 public/platform/WebMediaConstraints.h namespace blink { blink 34 public/platform/WebMediaDeviceInfo.h namespace blink { blink 39 public/platform/WebMediaPlayer.h namespace blink { blink 36 public/platform/WebMediaPlayerClient.h namespace blink { blink 37 public/platform/WebMediaSource.h namespace blink { blink 37 public/platform/WebMediaStream.h namespace blink { blink 36 public/platform/WebMediaStreamCenter.h namespace blink { blink 36 public/platform/WebMediaStreamCenterClient.h namespace blink { blink 43 public/platform/WebMediaStreamSource.h namespace blink { blink 36 public/platform/WebMediaStreamTrack.h namespace blink { blink 39 public/platform/WebMediaStreamTrackSourcesRequest.h namespace blink { blink 37 public/platform/WebMessagePortChannel.h namespace blink { blink 68 public/platform/WebMessagePortChannel.h template<> struct OwnedPtrDeleter<blink::WebMessagePortChannel> { blink 69 public/platform/WebMessagePortChannel.h static void deletePtr(blink::WebMessagePortChannel* channel) blink 34 public/platform/WebMessagePortChannelClient.h namespace blink { blink 36 public/platform/WebMimeRegistry.h namespace blink { blink 43 public/platform/WebMimeRegistry.h virtual SupportsType supportsMIMEType(const blink::WebString& mimeType) = 0; blink 44 public/platform/WebMimeRegistry.h virtual SupportsType supportsImageMIMEType(const blink::WebString& mimeType) = 0; blink 45 public/platform/WebMimeRegistry.h virtual SupportsType supportsJavaScriptMIMEType(const blink::WebString& mimeType) = 0; blink 46 public/platform/WebMimeRegistry.h virtual SupportsType supportsMediaMIMEType(const blink::WebString& mimeType, const blink::WebString& codecs, const blink::WebString& keySystem) = 0; blink 48 public/platform/WebMimeRegistry.h virtual bool supportsMediaSourceMIMEType(const blink::WebString& mimeType, const blink::WebString& codecs) = 0; blink 49 public/platform/WebMimeRegistry.h virtual bool supportsEncryptedMediaMIMEType(const blink::WebString& keySystem, const blink::WebString& mimeType, const blink::WebString& codecs) = 0; blink 51 public/platform/WebMimeRegistry.h virtual SupportsType supportsNonImageMIMEType(const blink::WebString& mimeType) = 0; blink 53 public/platform/WebMimeRegistry.h virtual blink::WebString mimeTypeForExtension(const blink::WebString& fileExtension) = 0; blink 54 public/platform/WebMimeRegistry.h virtual blink::WebString wellKnownMimeTypeForExtension(const blink::WebString& fileExtension) = 0; blink 55 public/platform/WebMimeRegistry.h virtual blink::WebString mimeTypeFromFile(const blink::WebString& filePath) = 0; blink 39 public/platform/WebNinePatchLayer.h namespace blink { blink 34 public/platform/WebNonCopyable.h namespace blink { blink 16 public/platform/WebPermissionCallbacks.h namespace blink { blink 34 public/platform/WebPluginListBuilder.h namespace blink { blink 42 public/platform/WebPoint.h namespace blink { blink 48 public/platform/WebPrerender.h namespace blink { blink 36 public/platform/WebPrerenderingSupport.h namespace blink { blink 37 public/platform/WebPrescientNetworking.h namespace blink { blink 37 public/platform/WebPrivateOwnPtr.h namespace blink { blink 45 public/platform/WebPrivatePtr.h namespace blink { blink 36 public/platform/WebPublicSuffixList.h namespace blink { blink 12 public/platform/WebPushClient.h namespace blink { blink 10 public/platform/WebPushError.h namespace blink { blink 10 public/platform/WebPushRegistration.h namespace blink { blink 44 public/platform/WebRTCConfiguration.h namespace blink { blink 32 public/platform/WebRTCDTMFSenderHandler.h namespace blink { blink 31 public/platform/WebRTCDTMFSenderHandlerClient.h namespace blink { blink 32 public/platform/WebRTCDataChannelHandler.h namespace blink { blink 32 public/platform/WebRTCDataChannelHandlerClient.h namespace blink { blink 36 public/platform/WebRTCDataChannelInit.h namespace blink { blink 42 public/platform/WebRTCICECandidate.h namespace blink { blink 34 public/platform/WebRTCPeerConnectionHandler.h namespace blink { blink 34 public/platform/WebRTCPeerConnectionHandlerClient.h namespace blink { blink 39 public/platform/WebRTCSessionDescription.h namespace blink { blink 43 public/platform/WebRTCSessionDescriptionRequest.h namespace blink { blink 42 public/platform/WebRTCStatsRequest.h namespace blink { blink 36 public/platform/WebRTCStatsResponse.h namespace blink { blink 43 public/platform/WebRTCVoidRequest.h namespace blink { blink 44 public/platform/WebRect.h namespace blink { blink 34 public/platform/WebReferrerPolicy.h namespace blink { blink 29 public/platform/WebRenderingStats.h namespace blink { blink 36 public/platform/WebScreenInfo.h namespace blink { blink 8 public/platform/WebScreenOrientation.h namespace blink { blink 10 public/platform/WebScreenOrientationListener.h namespace blink { blink 40 public/platform/WebScrollbar.h namespace blink { blink 8 public/platform/WebScrollbarBehavior.h namespace blink { blink 37 public/platform/WebScrollbarLayer.h namespace blink { blink 31 public/platform/WebScrollbarThemeGeometry.h namespace blink { blink 36 public/platform/WebScrollbarThemePainter.h namespace blink { blink 16 public/platform/WebSerializedOrigin.h namespace blink { blink 38 public/platform/WebServiceWorker.h namespace blink { blink 36 public/platform/WebServiceWorkerError.h namespace blink { blink 8 public/platform/WebServiceWorkerEventResult.h namespace blink { blink 36 public/platform/WebServiceWorkerProvider.h namespace blink { blink 34 public/platform/WebServiceWorkerProviderClient.h namespace blink { blink 12 public/platform/WebServiceWorkerResponse.h namespace blink { blink 45 public/platform/WebSize.h namespace blink { blink 37 public/platform/WebSocketHandle.h namespace blink { blink 37 public/platform/WebSocketHandleClient.h namespace blink { blink 42 public/platform/WebSocketHandshakeRequestInfo.h namespace blink { blink 42 public/platform/WebSocketHandshakeResponseInfo.h namespace blink { blink 43 public/platform/WebSocketStreamError.h namespace blink { blink 36 public/platform/WebSocketStreamHandle.h namespace blink { blink 36 public/platform/WebSocketStreamHandleClient.h namespace blink { blink 32 public/platform/WebSolidColorLayer.h namespace blink { blink 36 public/platform/WebSourceBuffer.h namespace blink { blink 34 public/platform/WebSourceInfo.h namespace blink { blink 35 public/platform/WebSpeechSynthesisUtterance.h namespace blink { blink 37 public/platform/WebSpeechSynthesisVoice.h namespace blink { blink 31 public/platform/WebSpeechSynthesizer.h namespace blink { blink 33 public/platform/WebSpeechSynthesizerClient.h namespace blink { blink 37 public/platform/WebStorageArea.h namespace blink { blink 36 public/platform/WebStorageNamespace.h namespace blink { blink 44 public/platform/WebStorageQuotaCallbacks.h namespace blink { blink 34 public/platform/WebStorageQuotaError.h namespace blink { blink 34 public/platform/WebStorageQuotaType.h namespace blink { blink 50 public/platform/WebString.h namespace blink { blink 38 public/platform/WebThemeEngine.h namespace blink { blink 30 public/platform/WebThread.h namespace blink { blink 43 public/platform/WebThreadSafeData.h namespace blink { blink 8 public/platform/WebThreadedDataReceiver.h namespace blink { blink 36 public/platform/WebTimeRange.h namespace blink { blink 33 public/platform/WebTransformAnimationCurve.h namespace blink { blink 35 public/platform/WebTransformKeyframe.h namespace blink { blink 32 public/platform/WebTransformOperations.h namespace blink { blink 44 public/platform/WebURL.h namespace blink { blink 41 public/platform/WebURLError.h namespace blink { blink 39 public/platform/WebURLLoadTiming.h namespace blink { blink 37 public/platform/WebURLLoader.h namespace blink { blink 34 public/platform/WebURLLoaderClient.h namespace blink { blink 42 public/platform/WebURLRequest.h namespace blink { blink 41 public/platform/WebURLResponse.h namespace blink { blink 33 public/platform/WebUnitTestSupport.h namespace blink { blink 38 public/platform/WebVector.h namespace blink { blink 34 public/platform/WebVibration.h namespace blink { blink 36 public/platform/WebWaitableEvent.h namespace blink { blink 34 public/platform/WebWorkerRunLoop.h namespace blink { blink 34 public/platform/android/WebSandboxSupport.h namespace blink { blink 37 public/platform/linux/WebFontFamily.h namespace blink { blink 41 public/platform/linux/WebFontInfo.h namespace blink { blink 38 public/platform/linux/WebFontRenderStyle.h namespace blink { blink 38 public/platform/linux/WebSandboxSupport.h namespace blink { blink 42 public/platform/mac/WebSandboxSupport.h namespace blink { blink 36 public/platform/win/WebSandboxSupport.h namespace blink { blink 34 public/web/WebAXEnums.h namespace blink { blink 45 public/web/WebAXObject.h namespace blink { blink 35 public/web/WebActiveWheelFlingParameters.h namespace blink { blink 41 public/web/WebArrayBufferConverter.h namespace blink { blink 42 public/web/WebArrayBufferView.h namespace blink { blink 36 public/web/WebAutofillClient.h namespace blink { blink 45 public/web/WebBindings.h namespace blink { blink 51 public/web/WebBlob.h namespace blink { blink 36 public/web/WebCache.h namespace blink { blink 40 public/web/WebCachedURLRequest.h namespace blink { blink 32 public/web/WebColorChooser.h namespace blink { blink 32 public/web/WebColorChooserClient.h namespace blink { blink 37 public/web/WebColorName.h namespace blink { blink 41 public/web/WebColorSuggestion.h namespace blink { blink 36 public/web/WebCompositionUnderline.h namespace blink { blink 36 public/web/WebConsoleMessage.h namespace blink { blink 33 public/web/WebContentDetectionResult.h namespace blink { blink 34 public/web/WebContentSecurityPolicy.h namespace blink { blink 45 public/web/WebContextMenuData.h namespace blink { blink 36 public/web/WebCustomElement.h namespace blink { blink 39 public/web/WebDOMActivityLogger.h namespace blink { blink 36 public/web/WebDOMCustomEvent.h namespace blink { blink 45 public/web/WebDOMError.h namespace blink { blink 44 public/web/WebDOMEvent.h namespace blink { blink 40 public/web/WebDOMEventListener.h namespace blink { blink 51 public/web/WebDOMFileSystem.h namespace blink { blink 48 public/web/WebDOMMediaStreamTrack.h namespace blink { blink 42 public/web/WebDOMMessageEvent.h namespace blink { blink 39 public/web/WebDOMMouseEvent.h namespace blink { blink 36 public/web/WebDOMProgressEvent.h namespace blink { blink 36 public/web/WebDOMResourceProgressEvent.h namespace blink { blink 38 public/web/WebDataSource.h namespace blink { blink 39 public/web/WebDatabase.h namespace blink { blink 31 public/web/WebDateTimeChooserCompletion.h namespace blink { blink 35 public/web/WebDateTimeChooserParams.h namespace blink { blink 33 public/web/WebDateTimeInputType.h namespace blink { blink 35 public/web/WebDateTimeSuggestion.h namespace blink { blink 37 public/web/WebDevToolsAgent.h namespace blink { blink 37 public/web/WebDevToolsAgentClient.h namespace blink { blink 36 public/web/WebDevToolsFrontend.h namespace blink { blink 34 public/web/WebDevToolsFrontendClient.h namespace blink { blink 11 public/web/WebDeviceEmulationParams.h namespace blink { blink 55 public/web/WebDocument.h namespace blink { blink 41 public/web/WebDocumentType.h namespace blink { blink 36 public/web/WebDragOperation.h namespace blink { blink 34 public/web/WebDragStatus.h namespace blink { blink 38 public/web/WebDraggableRegion.h namespace blink { blink 41 public/web/WebElement.h namespace blink { blink 42 public/web/WebElementCollection.h namespace blink { blink 36 public/web/WebEmbeddedWorker.h namespace blink { blink 38 public/web/WebEmbeddedWorkerStartData.h namespace blink { blink 34 public/web/WebExceptionCode.h namespace blink { blink 34 public/web/WebExternalPopupMenu.h namespace blink { blink 36 public/web/WebExternalPopupMenuClient.h namespace blink { blink 36 public/web/WebFileChooserCompletion.h namespace blink { blink 38 public/web/WebFileChooserParams.h namespace blink { blink 36 public/web/WebFindOptions.h namespace blink { blink 38 public/web/WebFont.h namespace blink { blink 40 public/web/WebFontDescription.h namespace blink { blink 42 public/web/WebFormControlElement.h namespace blink { blink 41 public/web/WebFormElement.h namespace blink { blink 55 public/web/WebFrame.h namespace blink { blink 154 public/web/WebFrame.h virtual void setRemoteWebLayer(blink::WebLayer*) = 0; blink 52 public/web/WebFrameClient.h namespace blink { blink 297 public/web/WebFrameClient.h WebLocalFrame*, unsigned identifier, const blink::WebURLRequest::Priority&) { } blink 300 public/web/WebFrameClient.h WebLocalFrame* webFrame, unsigned identifier, const blink::WebURLRequest::Priority& priority, int) { didChangeResourcePriority(webFrame, identifier, priority); } blink 29 public/web/WebGeolocationClient.h namespace blink { blink 34 public/web/WebGeolocationController.h namespace blink { blink 38 public/web/WebGeolocationError.h namespace blink { blink 36 public/web/WebGeolocationPermissionRequest.h namespace blink { blink 32 public/web/WebGeolocationPermissionRequestManager.h namespace blink { blink 48 public/web/WebGeolocationPermissionRequestManager.h BLINK_EXPORT int add(const blink::WebGeolocationPermissionRequest&); blink 49 public/web/WebGeolocationPermissionRequestManager.h BLINK_EXPORT bool remove(const blink::WebGeolocationPermissionRequest&, int&); blink 50 public/web/WebGeolocationPermissionRequestManager.h BLINK_EXPORT bool remove(int, blink::WebGeolocationPermissionRequest&); blink 38 public/web/WebGeolocationPosition.h namespace blink { blink 36 public/web/WebGlyphCache.h namespace blink { blink 36 public/web/WebHeap.h namespace blink { blink 37 public/web/WebHelperPlugin.h namespace blink { blink 64 public/web/WebHelperPlugin.h template<> struct OwnedPtrDeleter<blink::WebHelperPlugin> { blink 65 public/web/WebHelperPlugin.h static void deletePtr(blink::WebHelperPlugin* plugin) blink 8 public/web/WebHistoryCommitType.h namespace blink { blink 40 public/web/WebHistoryItem.h namespace blink { blink 35 public/web/WebHitTestResult.h namespace blink { blink 41 public/web/WebIconURL.h namespace blink { blink 36 public/web/WebImageCache.h namespace blink { blink 40 public/web/WebImageDecoder.h namespace blink { blink 40 public/web/WebInputElement.h namespace blink { blink 40 public/web/WebInputEvent.h namespace blink { blink 40 public/web/WebKit.h namespace blink { blink 41 public/web/WebLabelElement.h namespace blink { blink 37 public/web/WebLeakDetector.h namespace blink { blink 34 public/web/WebMIDIClient.h namespace blink { blink 42 public/web/WebMIDIClientMock.h namespace blink { blink 41 public/web/WebMIDIPermissionRequest.h namespace blink { blink 38 public/web/WebMediaDevicesRequest.h namespace blink { blink 34 public/web/WebMediaPlayerAction.h namespace blink { blink 36 public/web/WebMediaStreamRegistry.h namespace blink { blink 31 public/web/WebMemoryUsageInfo.h namespace blink { blink 39 public/web/WebMenuItemInfo.h namespace blink { blink 34 public/web/WebNavigationPolicy.h namespace blink { blink 34 public/web/WebNavigationType.h namespace blink { blink 34 public/web/WebNavigatorContentUtilsClient.h namespace blink { blink 36 public/web/WebNetworkStateNotifier.h namespace blink { blink 41 public/web/WebNode.h namespace blink { blink 41 public/web/WebNodeList.h namespace blink { blink 45 public/web/WebNotification.h namespace blink { blink 34 public/web/WebNotificationPermissionCallback.h namespace blink { blink 36 public/web/WebNotificationPresenter.h namespace blink { blink 41 public/web/WebOptionElement.h namespace blink { blink 35 public/web/WebPageOverlay.h namespace blink { blink 37 public/web/WebPagePopup.h namespace blink { blink 39 public/web/WebPageSerializer.h namespace blink { blink 34 public/web/WebPageSerializerClient.h namespace blink { blink 34 public/web/WebPageVisibilityState.h namespace blink { blink 39 public/web/WebPasswordFormData.h namespace blink { blink 34 public/web/WebPasswordGeneratorClient.h namespace blink { blink 44 public/web/WebPerformance.h namespace blink { blink 36 public/web/WebPermissionClient.h namespace blink { blink 44 public/web/WebPlugin.h namespace blink { blink 34 public/web/WebPluginAction.h namespace blink { blink 38 public/web/WebPluginContainer.h namespace blink { blink 40 public/web/WebPluginDocument.h namespace blink { blink 38 public/web/WebPluginParams.h namespace blink { blink 31 public/web/WebPluginScrollbar.h namespace blink { blink 28 public/web/WebPluginScrollbarClient.h namespace blink { blink 37 public/web/WebPopupMenu.h namespace blink { blink 37 public/web/WebPopupMenuInfo.h namespace blink { blink 34 public/web/WebPopupType.h namespace blink { blink 37 public/web/WebPrerendererClient.h namespace blink { blink 38 public/web/WebPrintParams.h namespace blink { blink 34 public/web/WebPrintScalingOption.h namespace blink { blink 41 public/web/WebRange.h namespace blink { blink 36 public/web/WebRuntimeFeatures.h namespace blink { blink 36 public/web/WebScopedMicrotaskSuppression.h namespace blink { blink 40 public/web/WebScopedUserGesture.h namespace blink { blink 40 public/web/WebScopedWindowFocusAllowedIndicator.h namespace blink { blink 43 public/web/WebScriptBindings.h namespace blink { blink 40 public/web/WebScriptController.h namespace blink { blink 37 public/web/WebScriptSource.h namespace blink { blink 38 public/web/WebSearchableFormData.h namespace blink { blink 41 public/web/WebSecurityOrigin.h namespace blink { blink 37 public/web/WebSecurityPolicy.h namespace blink { blink 42 public/web/WebSelectElement.h namespace blink { blink 36 public/web/WebSelector.h namespace blink { blink 44 public/web/WebSerializedScriptValue.h namespace blink { blink 34 public/web/WebSerializedScriptValueVersion.h namespace blink { blink 37 public/web/WebServiceWorkerContextClient.h namespace blink { blink 82 public/web/WebServiceWorkerContextClient.h virtual void didHandleActivateEvent(int eventID, blink::WebServiceWorkerEventResult result) { } blink 87 public/web/WebServiceWorkerContextClient.h virtual void didHandleInstallEvent(int installEventID, blink::WebServiceWorkerEventResult result) { } blink 96 public/web/WebServiceWorkerContextClient.h virtual WebServiceWorkerNetworkProvider* createServiceWorkerNetworkProvider(blink::WebDataSource*) { return 0; } blink 36 public/web/WebServiceWorkerContextProxy.h namespace blink { blink 34 public/web/WebServiceWorkerNetworkProvider.h namespace blink { blink 47 public/web/WebServiceWorkerNetworkProvider.h virtual void willSendRequest(blink::WebDataSource*, blink::WebURLRequest&) { } blink 38 public/web/WebSettings.h namespace blink { blink 41 public/web/WebSharedWorker.h namespace blink { blink 36 public/web/WebSharedWorkerClient.h namespace blink { blink 36 public/web/WebSharedWorkerConnector.h namespace blink { blink 36 public/web/WebSharedWorkerRepositoryClient.h namespace blink { blink 39 public/web/WebSocket.h namespace blink { blink 36 public/web/WebSocketClient.h namespace blink { blink 37 public/web/WebSpeechGrammar.h namespace blink { blink 36 public/web/WebSpeechInputController.h namespace blink { blink 36 public/web/WebSpeechInputListener.h namespace blink { blink 38 public/web/WebSpeechInputResult.h namespace blink { blink 36 public/web/WebSpeechRecognitionHandle.h namespace blink { blink 34 public/web/WebSpeechRecognitionParams.h namespace blink { blink 38 public/web/WebSpeechRecognitionResult.h namespace blink { blink 32 public/web/WebSpeechRecognizer.h namespace blink { blink 31 public/web/WebSpeechRecognizerClient.h namespace blink { blink 38 public/web/WebSpellCheckClient.h namespace blink { blink 36 public/web/WebStorageEventDispatcher.h namespace blink { blink 37 public/web/WebSurroundingText.h namespace blink { blink 32 public/web/WebTestingSupport.h namespace blink { blink 34 public/web/WebTextAffinity.h namespace blink { blink 40 public/web/WebTextAreaElement.h namespace blink { blink 36 public/web/WebTextCheckingCompletion.h namespace blink { blink 42 public/web/WebTextCheckingResult.h namespace blink { blink 34 public/web/WebTextCheckingType.h namespace blink { blink 34 public/web/WebTextDecorationType.h namespace blink { blink 34 public/web/WebTextDirection.h namespace blink { blink 32 public/web/WebTextInputInfo.h namespace blink { blink 34 public/web/WebTextInputType.h namespace blink { blink 40 public/web/WebTextRun.h namespace blink { blink 34 public/web/WebTouchAction.h namespace blink { blink 37 public/web/WebTouchPoint.h namespace blink { blink 34 public/web/WebURLLoaderOptions.h namespace blink { blink 36 public/web/WebUserGestureIndicator.h namespace blink { blink 40 public/web/WebUserGestureToken.h namespace blink { blink 34 public/web/WebUserMediaClient.h namespace blink { blink 43 public/web/WebUserMediaRequest.h namespace blink { blink 43 public/web/WebView.h namespace blink { blink 50 public/web/WebViewClient.h namespace blink { blink 42 public/web/WebWidget.h namespace blink { blink 41 public/web/WebWidgetClient.h namespace blink { blink 42 public/web/WebWindowFeatures.h namespace blink { blink 36 public/web/WebWorkerInfo.h namespace blink { blink 36 public/web/WebWorkerPermissionClientProxy.h namespace blink { blink 37 public/web/android/WebInputEventFactory.h namespace blink { blink 36 public/web/default/WebRenderTheme.h namespace blink { blink 42 public/web/gtk/WebInputEventFactory.h namespace blink { blink 38 public/web/linux/WebFontRendering.h namespace blink { blink 44 public/web/mac/WebInputEventFactory.h namespace blink { blink 36 public/web/mac/WebScrollbarTheme.h namespace blink { blink 37 public/web/mac/WebSubstringUtil.h namespace blink { blink 48 public/web/mac/WebSubstringUtil.h namespace blink { blink 12 public/web/win/WebFontRendering.h namespace blink { blink 38 public/web/win/WebInputEventFactory.h namespace blink {