Searched refs:fromStep (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContextRecorder.h50 PassOwnPtr<Vector<char> > replay(unsigned fromStep = 0, unsigned toStep = 0, double scale = 1.0) const;
H A DGraphicsContextRecorder.cpp101 PassOwnPtr<Vector<char> > GraphicsContextSnapshot::replay(unsigned fromStep, unsigned toStep, double scale) const argument
108 ReplayingCanvas canvas(bitmap, fromStep, toStep);
H A DReplayingCanvas.h41 ReplayingCanvas(SkBitmap, unsigned fromStep, unsigned toStep);
H A DReplayingCanvas.cpp61 ReplayingCanvas::ReplayingCanvas(SkBitmap bitmap, unsigned fromStep, unsigned toStep) argument
62 : InterceptingCanvas(bitmap), m_fromStep(fromStep), m_toStep(toStep), m_stepCount(0), m_abortDrawing(false)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorLayerTreeAgent.h80 virtual void replaySnapshot(ErrorString*, const String& snapshotId, const int* fromStep, const int* toStep, const double* scale, String* dataURL) OVERRIDE;
H A DInspectorLayerTreeAgent.cpp377 void InspectorLayerTreeAgent::replaySnapshot(ErrorString* errorString, const String& snapshotId, const int* fromStep, const int* toStep, const double* scale, String* dataURL) argument
382 OwnPtr<Vector<char> > base64Data = snapshot->replay(fromStep ? *fromStep : 0, toStep ? *toStep : 0, scale ? *scale : 1.0);

Completed in 107 milliseconds