HomeSort by relevance Sort by last modified time
    Searched defs:pp_size (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ppapi/cpp/
size.h 8 #include "ppapi/c/pp_size.h"
27 /// A constructor accepting a pointer to a <code>PP_Size</code> and
28 /// converting the <code>PP_Size</code> to a <code>Size</code>. This is an
31 /// @param[in] s A pointer to a <code>PP_Size</code>.
32 Size(const PP_Size& s) { // Implicit.
53 /// PP_Size() allows implicit conversion of a <code>Size</code> to a
54 /// <code>PP_Size</code>.
57 operator PP_Size() {
61 /// Getter function for returning the internal <code>PP_Size</code> struct.
63 /// @return A const reference to the internal <code>PP_Size</code> struct
64 const PP_Size& pp_size() const { function in class:pp::Size
71 PP_Size& pp_size() { function in class:pp::Size
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_view.cc 104 pp::Rect pp_size = view.GetRect(); local
105 webrtc::DesktopSize new_dips_size(pp_size.width(), pp_size.height());
131 pp::Size pp_size = pp::Size(view_size_.width(), view_size_.height()); local
132 graphics2d_ = pp::Graphics2D(instance_, pp_size, false);
151 ceilf(pp_size.width() * dips_to_view_scale_),
152 ceilf(pp_size.height() * dips_to_view_scale_))

Completed in 298 milliseconds