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

1 2 3

  /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);
browser_commands_unittest.cc 12 #include "chrome/browser/ui/zoom/zoom_controller.h"
240 // Continue to zoom in until zoom percent reaches 500.
242 chrome_page_zoom::Zoom(contents1, content::PAGE_ZOOM_IN);
245 // TODO(a.sarkar.arun@gmail.com): Figure out why Zoom-In menu item is not
246 // disabled after Max-zoom is reached. Force disable Zoom-In menu item
265 // Continue to zoom out until zoom percent reaches 25.
267 chrome_page_zoom::Zoom(contents1, content::PAGE_ZOOM_OUT)
    [all...]
chrome_page_zoom.cc 13 #include "chrome/browser/ui/zoom/zoom_controller.h"
33 // Generate a vector of zoom values from an array of known preset
69 void Zoom(content::WebContents* web_contents, content::PageZoom zoom) {
79 if (zoom == content::PAGE_ZOOM_RESET) {
85 // Generate a vector of zoom levels from an array of known presets along with
89 if (zoom == content::PAGE_ZOOM_OUT) {
90 // Iterate through the zoom levels in reverse order to find the next
91 // lower level based on the current zoom level for this page.
105 // Iterate through the zoom levels in normal order to find the nex
    [all...]
  /external/chromium_org/chrome/browser/guest_view/mime_handler_view/
chrome_mime_handler_view_guest_delegate.cc 49 chrome_page_zoom::Zoom(
  /external/chromium_org/chrome/browser/ui/panels/
panel_host.cc 20 #include "chrome/browser/ui/zoom/zoom_controller.h"
58 // web_contents_ may be passed to chrome_page_zoom::Zoom(), so it needs
187 Zoom(zoom_in ? content::PAGE_ZOOM_IN : content::PAGE_ZOOM_OUT);
271 void PanelHost::Zoom(content::PageZoom zoom) {
272 chrome_page_zoom::Zoom(web_contents_.get(), zoom);
panel_host.h 96 void Zoom(content::PageZoom zoom);
  /external/chromium_org/content/public/browser/
render_view_host.h 190 // Changes the zoom level for the current main frame.
191 virtual void Zoom(PageZoom zoom) = 0;
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test.h 143 } Zoom;
  /external/chromium_org/chrome/browser/profiles/
host_zoom_map_browsertest.cc 147 // Zoom-related preferences demonstrating the two problems that could be
148 // caused by the bug. They incorrectly contain a per-host zoom level for the
198 chrome_page_zoom::Zoom(web_contents, content::PAGE_ZOOM_OUT);
203 chrome_page_zoom::Zoom(web_contents, content::PAGE_ZOOM_IN);
208 // Now both tabs should be at the default zoom level, so there should not be
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableLengthTest.cpp 17 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double zoom = 1)
19 return AnimatableLength::create(length, zoom);
46 TEST(AnimationAnimatableLengthTest, Zoom)
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /external/chromium_org/chrome/browser/ui/views/apps/
chrome_native_app_window_views.cc 18 #include "chrome/browser/ui/zoom/zoom_controller.h"
77 // user to manually zoom app windows. This is only necessary in kiosk mode
78 // (in normal mode, the user can zoom via the screen magnifier).
566 chrome_page_zoom::Zoom(web_view()->GetWebContents(),
570 chrome_page_zoom::Zoom(web_view()->GetWebContents(),
574 chrome_page_zoom::Zoom(web_view()->GetWebContents(),
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_misc.cc 223 using extensions::api::file_manager_private::Zoom::Params;
242 render_view_host()->Zoom(zoom_type);
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventFactoryMac.mm 650 // "Zoom"
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_commands.h 126 void Zoom(Browser* browser, content::PageZoom zoom);
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.cc 240 instance_->Zoom(content::ZoomLevelToZoomFactor(level), text_only);
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_view.js 104 * Applies the viewport change that does not affect the screen cache size (zoom
407 * @param {Rect} zoomToRect Target rectangle for zoom-out-effect.
466 // Once we implement zoom/pan we should pass contentCanvas_ instead.
577 * @return {ImageView.Effect.Zoom} Zoom effect object.
606 new ImageView.Effect.Zoom(
638 var effect = new ImageView.Effect.Zoom(
766 * Zoom effect.
777 ImageView.Effect.Zoom = function(
786 ImageView.Effect.Zoom.prototype = { __proto__: ImageView.Effect.prototype }
    [all...]
viewport.js 27 * Bounds of the image element on screen without zoom and offset.
34 * Bounds of the image with zoom and offset.
49 * not zoom operated by users.
56 * Zoom ratio specified by user operations.
97 * Zoom ratios.
123 * Sets zoom value directly.
124 * @param {number} zoom New zoom value.
126 Viewport.prototype.setZoom = function(zoom) {
129 var adjustedZoom = Math.max(zoomMin, Math.min(zoom, zoomMax))
    [all...]
  /external/chromium_org/chrome/browser/resources/pdf/
viewport.js 27 * @param {Function} beforeZoomCallback is run before a change in zoom
28 * @param {Function} afterZoomCallback is run after a change in zoom
72 * Predefined zoom factors to be used when zooming in/out. These are in
80 * The minimum and maximum range to be used to clip zoom factor.
95 * Returns true if the document needs scrollbars at the given zoom level.
96 * @param {number} zoom compute whether scrollbars are needed at this zoom
101 documentNeedsScrollbars_: function(zoom) {
108 var documentWidth = this.documentDimensions_.width * zoom;
109 var documentHeight = this.documentDimensions_.height * zoom;
335 var zoom; variable
    [all...]
  /external/chromium_org/chrome/browser/ui/views/location_bar/
zoom_bubble_view.cc 18 #include "chrome/browser/ui/zoom/zoom_controller.h"
61 // Find the extension that initiated the zoom change, if any.
66 // If the bubble is already showing in this window and the zoom change was not
86 // If the zoom change was initiated by an extension, capture the relevent
278 chrome_page_zoom::Zoom(web_contents_, content::PAGE_ZOOM_RESET);
283 // Set up the layout of the zoom bubble. A grid layout is used because
284 // sometimes an extension icon is shown next to the zoom label.
297 // If this zoom change was initiated by an extension, that extension will be
298 // attributed by showing its icon in the zoom bubble.
309 // Add zoom label with the new zoom percent
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_view_host_impl.h 194 virtual void Zoom(PageZoom zoom) OVERRIDE;

Completed in 446 milliseconds

1 2 3