Searched defs:maximumPageScaleFactor (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorClient.h73 virtual float maximumPageScaleFactor() { return 1; } function in class:blink::InspectorClient
/external/chromium_org/third_party/WebKit/Source/web/
H A DInspectorClientImpl.cpp148 float InspectorClientImpl::maximumPageScaleFactor() function in class:blink::InspectorClientImpl
150 return m_inspectedWebView->maximumPageScaleFactor();
H A DWebViewImpl.cpp683 if (m_webSettings->doubleTapToZoomEnabled() && minimumPageScaleFactor() != maximumPageScaleFactor()) {
3304 float WebViewImpl::maximumPageScaleFactor() const function in class:WebViewImpl
4184 m_layerTreeView->setPageScaleFactorAndLimits(pageScaleFactor(), minimumPageScaleFactor(), maximumPageScaleFactor());
4277 m_layerTreeView->setPageScaleFactorAndLimits(pageScaleFactor(), minimumPageScaleFactor(), maximumPageScaleFactor());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DResponsiveDesignView.js75 this._viewport = { scrollX: 0, scrollY: 0, contentsWidth: 0, contentsHeight: 0, pageScaleFactor: 1, minimumPageScaleFactor: 1, maximumPageScaleFactor: 1 };
487 || this._cachedViewport.maximumPageScaleFactor !== this._viewport.maximumPageScaleFactor;
500 this._increasePageScaleButton.title = WebInspector.UIString("Scale up (maximum %.1f)", this._viewport.maximumPageScaleFactor);
501 this._increasePageScaleButton.setEnabled(this._viewport.pageScaleFactor < this._viewport.maximumPageScaleFactor);
706 this._viewport.maximumPageScaleFactor = Math.min(10, this._viewport.maximumPageScaleFactor);
707 this._viewport.maximumPageScaleFactor = Math.max(this._viewport.maximumPageScaleFactor, this._viewport.pageScaleFactor);
738 value = Math.min(this._viewport.maximumPageScaleFactor, valu
[all...]

Completed in 455 milliseconds