/external/chromium_org/chrome/browser/ui/ |
chrome_web_modal_dialog_manager_delegate.cc | 19 return platform_util::IsVisible(web_contents->GetView()->GetNativeView());
|
/external/chromium_org/chrome/browser/ui/app_list/ |
app_list.h | 20 virtual bool IsVisible() = 0;
|
/external/chromium_org/ppapi/cpp/ |
view.h | 53 /// IsVisible() determines whether the module instance might be visible to 56 /// would not be visible to the user, but IsVisible() will return true. 67 bool IsVisible() const; 73 /// Most applications should use IsVisible() instead of this function since 93 /// IsPageVisible() and IsVisible() if you want to account for page 98 /// visible, as determined by IsVisible(), and do no updates if it is not
|
view.cc | 53 bool View::IsVisible() const { 55 return PP_ToBool(get_interface<PPB_View_1_1>()->IsVisible(pp_resource())); 57 return PP_ToBool(get_interface<PPB_View_1_0>()->IsVisible(pp_resource()));
|
/external/chromium_org/chrome/browser/ |
platform_util_aura.cc | 41 bool IsVisible(gfx::NativeView view) { 42 return view->IsVisible();
|
platform_util.h | 52 bool IsVisible(gfx::NativeView view);
|
platform_util_android.cc | 44 bool IsVisible(gfx::NativeView view) {
|
platform_util_common_linux.cc | 30 bool IsVisible(gfx::NativeView view) {
|
/external/chromium_org/ppapi/thunk/ |
ppb_view_api.h | 25 virtual PP_Bool IsVisible() const = 0;
|
ppb_view_thunk.cc | 43 PP_Bool IsVisible(PP_Resource resource) { 44 VLOG(4) << "PPB_View::IsVisible()"; 48 return enter.object()->IsVisible(); 87 &IsVisible, 96 &IsVisible,
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
macwindowpicker.h | 16 virtual bool IsVisible(const WindowId& id);
|
linuxwindowpicker.h | 51 virtual bool IsVisible(const WindowId& id);
|
win32windowpicker.h | 16 virtual bool IsVisible(const WindowId& id);
|
/external/chromium_org/ui/views/corewm/ |
tooltip.h | 40 virtual bool IsVisible() = 0;
|
visibility_controller_unittest.cc | 41 EXPECT_TRUE(animatable->IsVisible()); 44 EXPECT_FALSE(animatable->IsVisible()); 47 EXPECT_TRUE(non_animatable->IsVisible()); 50 EXPECT_FALSE(non_animatable->IsVisible());
|
tooltip_win.h | 45 virtual bool IsVisible() OVERRIDE;
|
/external/chromium_org/ppapi/c/ |
ppb_view.h | 89 * IsVisible() determines whether the module instance might be visible to 92 * would not be visible to the user, but IsVisible() will return true. 107 PP_Bool (*IsVisible)(PP_Resource resource); 113 * Most applications should use IsVisible() instead of this function since 137 * IsPageVisible() and IsVisible() if you want to account for page 142 * visible, as determined by IsVisible(), and do no updates if it is not 208 PP_Bool (*IsVisible)(PP_Resource resource);
|
/external/chromium/chrome/browser/speech/ |
speech_input_bubble_views.cc | 134 if (icon_->IsVisible()) 167 if (try_again_->IsVisible()) { 175 if (mic_settings_->IsVisible()) { 181 if (message_->IsVisible()) { 185 if (heading_->IsVisible()) 187 if (icon_->IsVisible()) 189 if (mic_settings_->IsVisible()) 203 if (message_->IsVisible()) { 204 DCHECK(try_again_->IsVisible()); 225 DCHECK(icon_->IsVisible()); [all...] |
/external/chromium/chrome/browser/sync/ |
sync_setup_wizard.h | 69 bool IsVisible() const;
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
location_bar_decoration.h | 31 virtual bool IsVisible() const;
|
/external/chromium/chrome/browser/ui/views/location_bar/ |
page_action_with_badge_view.cc | 40 SetVisible(image_view_->IsVisible());
|
/external/chromium_org/chrome/browser/ui/bookmarks/ |
bookmark_browsertest.cc | 35 bool IsVisible() { 68 ASSERT_FALSE(IsVisible()); 72 ASSERT_TRUE(IsVisible()); 76 ASSERT_FALSE(IsVisible());
|
/external/chromium_org/chrome/browser/ui/views/ |
dropdown_bar_host_aura.cc | 28 if (!host_->IsVisible())
|
/external/chromium_org/ppapi/api/ |
ppb_view.idl | 78 * IsVisible() determines whether the module instance might be visible to 81 * would not be visible to the user, but IsVisible() will return true. 96 PP_Bool IsVisible([in] PP_Resource resource); 103 * Most applications should use IsVisible() instead of this function since 128 * IsPageVisible() and IsVisible() if you want to account for page 133 * visible, as determined by IsVisible(), and do no updates if it is not
|
/external/chromium_org/ui/message_center/views/ |
message_bubble_base.cc | 53 bool MessageBubbleBase::IsVisible() const { 54 return bubble_view() && bubble_view()->GetWidget()->IsVisible();
|