HomeSort by relevance Sort by last modified time
    Searched refs:Zoom (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/ppapi/c/dev/
ppp_zoom_dev.h 21 * Implementation of the Zoom interface.
30 * Zoom interface should only apply to those full-page "plugin-document".
34 * Instruct plug-in to zoom according to the given factor and whether the zoom
36 * 100, i.e. 150% zoom is 1.5.
38 void (*Zoom)(PP_Instance instance, double factor, PP_Bool text_only);
  /external/chromium_org/ppapi/api/dev/
ppp_zoom_dev.idl 7 * Implementation of the Zoom interface.
15 * Zoom interface should only apply to those full-page "plugin-document".
19 * Instruct plug-in to zoom according to the given factor and whether the zoom
21 * 100, i.e. 150% zoom is 1.5.
23 void Zoom([in] PP_Instance instance,
  /external/chromium_org/ppapi/cpp/dev/
zoom_dev.cc 19 void Zoom(PP_Instance instance,
25 static_cast<Zoom_Dev*>(object)->Zoom(factor, PP_ToBool(text_only));
29 &Zoom
zoom_dev.h 47 virtual void Zoom(double factor, bool text_only) = 0;
49 // PPB_Zoom_Def functions for you to call to report new zoom factor.
  /external/chromium_org/chrome/browser/
chrome_page_zoom.h 17 // Return a sorted vector of zoom factors. The vector will consist of preset
22 // Return a sorted vector of zoom levels. The vector will consist of preset
27 // Adjusts the zoom level of |web_contents|.
28 void Zoom(content::WebContents* web_contents, content::PageZoom zoom);
chrome_page_zoom.cc 31 // Generate a vector of zoom values from an array of known preset
67 void Zoom(content::WebContents* web_contents, content::PageZoom zoom) {
73 if (zoom == content::PAGE_ZOOM_RESET) {
79 // Generate a vector of zoom levels from an array of known presets along with
83 if (zoom == content::PAGE_ZOOM_OUT) {
84 // Iterate through the zoom levels in reverse order to find the next
85 // lower level based on the current zoom level for this page.
99 // Iterate through the zoom levels in normal order to find the next
100 // higher level based on the current zoom level for this page
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_host.cc 182 Zoom(zoom_in ? content::PAGE_ZOOM_IN : content::PAGE_ZOOM_OUT);
266 void PanelHost::Zoom(content::PageZoom zoom) {
267 chrome_page_zoom::Zoom(web_contents_.get(), zoom);
panel_host.h 95 void Zoom(content::PageZoom zoom);
panel.cc 401 // Zoom
403 panel_host_->Zoom(content::PAGE_ZOOM_IN);
406 panel_host_->Zoom(content::PAGE_ZOOM_RESET);
409 panel_host_->Zoom(content::PAGE_ZOOM_OUT);
842 // Zoom
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test.h 143 } Zoom;
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_misc.cc 163 using extensions::api::file_browser_private::Zoom::Params;
183 view_host->Zoom(zoom_type);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
inspector.js 146 this._zoomLevel = Math.min(this._zoomLevel + 1, WebInspector.Zoom.Table.length - WebInspector.Zoom.DefaultOffset - 1);
152 this._zoomLevel = Math.max(this._zoomLevel - 1, -WebInspector.Zoom.DefaultOffset);
168 // For backwards compatibility, zoomLevel takes integers (with 0 being default zoom).
169 var index = this._zoomLevel + WebInspector.Zoom.DefaultOffset;
170 index = Math.min(WebInspector.Zoom.Table.length - 1, index);
172 return WebInspector.Zoom.Table[index];
653 // Zoom reset shortcut does not allow "Shift" when handled by the browser.
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
location_bar_view_gtk_browsertest.cc 17 #include "chrome/browser/ui/zoom/zoom_controller.h"
118 chrome::Zoom(browser(), zoom_action);
  /external/chromium_org/content/public/browser/
render_view_host.h 256 // Changes the zoom level for the current main frame.
257 virtual void Zoom(PageZoom zoom) = 0;
  /external/chromium/chrome/browser/resources/
wrench_menu.js 138 * ZoomCommand class implements Zoom plus and fullscreen.
162 * Activate zoom plus and full screen commands.
181 * Decorate Zoom button item.
189 this.minus_.className = 'zoom-button left-button';
192 this.plus_.className = 'zoom-button right-button';
194 this.percent_.className = 'zoom-percent center-button';
215 * Updates zoom controls.
216 * @params {JSON} params JSON object to configure zoom controls.
247 * Initializes the zoom menu item with configuration info.
272 * Decorate Zoom button item
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
wrench_menu.js 138 * ZoomCommand class implements Zoom plus and fullscreen.
162 * Activate zoom plus and full screen commands.
181 * Decorate Zoom button item.
189 this.minus_.className = 'zoom-button left-button';
192 this.plus_.className = 'zoom-button right-button';
194 this.percent_.className = 'zoom-percent center-button';
215 * Updates zoom controls.
216 * @params {JSON} params JSON object to configure zoom controls.
247 * Initializes the zoom menu item with configuration info.
272 * Decorate Zoom button item
    [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
image_view.js 515 * @param {Rect} zoomToRect Target rectangle for zoom-out-effect.
589 // Once we implement zoom/pan we should pass contentCanvas_ instead.
690 * @return {ImageView.Effect.Zoom} Zoom effect object.
693 return new ImageView.Effect.Zoom(
725 new ImageView.Effect.Zoom(deviceCropRect, deviceFullRect);
764 var effect = new ImageView.Effect.Zoom(deviceCropRect, deviceFullRect);
992 * Zoom effect.
1003 ImageView.Effect.Zoom = function(
1014 ImageView.Effect.Zoom.prototype = { __proto__: ImageView.Effect.prototype }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventFactoryMac.mm 663 // "Zoom"
    [all...]
  /external/chromium_org/chrome/browser/automation/
automation_provider_win.cc 263 content::PageZoom zoom = static_cast<content::PageZoom>(zoom_level); local
264 host->Zoom(zoom);
  /external/chromium_org/chrome/browser/ui/
browser_commands.h 123 void Zoom(Browser* browser, content::PageZoom zoom);
browser_command_controller.cc 619 // Zoom
621 Zoom(browser_, content::PAGE_ZOOM_IN);
624 Zoom(browser_, content::PAGE_ZOOM_RESET);
627 Zoom(browser_, content::PAGE_ZOOM_OUT);
943 // Zoom
    [all...]
  /external/chromium_org/chrome/browser/ui/views/location_bar/
zoom_bubble_view.cc 16 #include "chrome/browser/ui/zoom/zoom_controller.h"
207 chrome_page_zoom::Zoom(web_contents_, content::PAGE_ZOOM_RESET);
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.cc 254 instance_->Zoom(content::ZoomLevelToZoomFactor(level), text_only);
  /external/chromium/chrome/browser/
external_tab_container_win.cc     [all...]

Completed in 1171 milliseconds

1 2