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

  /external/chromium_org/ppapi/c/
ppb_view.h 99 * and IsPageVisible() (whether the page is visible to the user).
109 * IsPageVisible() determines if the page that contains the module instance
126 PP_Bool (*IsPageVisible)(PP_Resource resource);
137 * IsPageVisible() and IsVisible() if you want to account for page
209 PP_Bool (*IsPageVisible)(PP_Resource resource);
  /external/chromium_org/ppapi/cpp/
view.cc 61 bool View::IsPageVisible() const {
63 return PP_ToBool(get_interface<PPB_View_1_1>()->IsPageVisible(
66 return PP_ToBool(get_interface<PPB_View_1_0>()->IsPageVisible(
  /external/chromium_org/ppapi/thunk/
ppb_view_thunk.cc 51 PP_Bool IsPageVisible(PP_Resource resource) {
52 VLOG(4) << "PPB_View::IsPageVisible()";
56 return enter.object()->IsPageVisible();
88 &IsPageVisible,
97 &IsPageVisible,
  /external/chromium_org/ppapi/shared_impl/
ppb_view_shared.cc 76 PP_Bool PPB_View_Shared::IsPageVisible() const {

Completed in 27 milliseconds