HomeSort by relevance Sort by last modified time
    Searched refs:Zoom (Results 1 - 25 of 42) 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) {
74 if (zoom == content::PAGE_ZOOM_RESET) {
80 // Generate a vector of zoom levels from an array of known presets along with
84 if (zoom == content::PAGE_ZOOM_OUT) {
85 // Iterate through the zoom levels in reverse order to find the next
86 // lower level based on the current zoom level for this page.
100 // Iterate through the zoom levels in normal order to find the next
101 // higher level based on the current zoom level for this page
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_host.cc 179 Zoom(zoom_in ? content::PAGE_ZOOM_IN : content::PAGE_ZOOM_OUT);
263 void PanelHost::Zoom(content::PageZoom zoom) {
264 chrome_page_zoom::Zoom(web_contents_.get(), zoom);
panel_host.h 95 void Zoom(content::PageZoom zoom);
panel.cc 397 // Zoom
399 panel_host_->Zoom(content::PAGE_ZOOM_IN);
402 panel_host_->Zoom(content::PAGE_ZOOM_RESET);
405 panel_host_->Zoom(content::PAGE_ZOOM_OUT);
847 // Zoom
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test.h 143 } Zoom;
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_misc.cc 200 view_host->Zoom(zoom_type);
  /external/chromium_org/chrome/browser/ui/gtk/
location_bar_view_gtk_browsertest.cc 17 #include "chrome/browser/ui/zoom/zoom_controller.h"
117 chrome::Zoom(browser(), zoom_action);
  /external/chromium_org/content/public/browser/
render_view_host.h 260 // Set the zoom level for the current main frame
263 // Changes the zoom level for the current main frame.
264 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/WebKit/Source/devtools/front_end/
inspector.js 273 this._zoomLevel = Math.min(this._zoomLevel + 1, WebInspector.Zoom.Table.length - WebInspector.Zoom.DefaultOffset - 1);
279 this._zoomLevel = Math.max(this._zoomLevel - 1, -WebInspector.Zoom.DefaultOffset);
292 // For backwards compatibility, zoomLevel takes integers (with 0 being default zoom).
293 var index = this._zoomLevel + WebInspector.Zoom.DefaultOffset;
294 index = Math.min(WebInspector.Zoom.Table.length - 1, index);
296 InspectorFrontendHost.setZoomFactor(WebInspector.Zoom.Table[index]);
    [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_view.js 509 * @param {Rect} zoomToRect Target rectangle for zoom-out-effect.
584 // Once we implement zoom/pan we should pass contentCanvas_ instead.
685 * @return {ImageView.Effect.Zoom} Zoom effect object.
688 return new ImageView.Effect.Zoom(
720 new ImageView.Effect.Zoom(deviceCropRect, deviceFullRect);
759 var effect = new ImageView.Effect.Zoom(deviceCropRect, deviceFullRect);
986 * Zoom effect.
997 ImageView.Effect.Zoom = function(
1008 ImageView.Effect.Zoom.prototype = { __proto__: ImageView.Effect.prototype }
    [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 122 void Zoom(Browser* browser, content::PageZoom zoom);
browser_command_controller.cc 565 // Zoom
567 Zoom(browser_, content::PAGE_ZOOM_IN);
570 Zoom(browser_, content::PAGE_ZOOM_RESET);
573 Zoom(browser_, content::PAGE_ZOOM_OUT);
869 // Zoom
    [all...]
  /external/chromium_org/chrome/browser/ui/views/location_bar/
zoom_bubble_view.cc 16 #include "chrome/browser/ui/zoom/zoom_controller.h"
206 chrome_page_zoom::Zoom(web_contents_, content::PAGE_ZOOM_RESET);
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.cc 251 instance_->Zoom(content::ZoomLevelToZoomFactor(level), text_only);
  /external/chromium/chrome/browser/
external_tab_container_win.cc     [all...]
  /external/chromium_org/chrome/browser/ui/views/
external_tab_container_win.cc     [all...]

Completed in 384 milliseconds

1 2