Searched refs:IsVisible (Results 1 - 25 of 235) sorted by relevance

12345678910

/external/chromium_org/chrome/browser/ui/
H A Dchrome_web_modal_dialog_manager_delegate.cc18 return platform_util::IsVisible(web_contents->GetNativeView());
/external/chromium_org/chrome/browser/
H A Dplatform_util_aura.cc41 bool IsVisible(gfx::NativeView view) { function in namespace:platform_util
42 return view->IsVisible();
H A Dplatform_util.h52 bool IsVisible(gfx::NativeView view);
H A Dplatform_util_android.cc44 bool IsVisible(gfx::NativeView view) { function in namespace:platform_util
/external/chromium_org/ppapi/cpp/
H A Dview.h53 /// 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
H A Dview.cc63 bool View::IsVisible() const { function in class:pp::View
65 return PP_ToBool(get_interface<PPB_View_1_2>()->IsVisible(pp_resource()));
67 return PP_ToBool(get_interface<PPB_View_1_1>()->IsVisible(pp_resource()));
69 return PP_ToBool(get_interface<PPB_View_1_0>()->IsVisible(pp_resource()));
/external/chromium_org/ui/views/test/
H A Dwidget_test_aura.cc21 return window->IsVisible();
/external/chromium_org/chrome/browser/ui/views/
H A Dconstrained_window_views_browsertest.cc74 EXPECT_TRUE(dialog1->GetWidget()->IsVisible());
81 EXPECT_FALSE(dialog2->GetWidget()->IsVisible());
82 EXPECT_TRUE(dialog1->GetWidget()->IsVisible());
94 EXPECT_TRUE(dialog2->GetWidget()->IsVisible());
121 EXPECT_TRUE(dialog->GetWidget()->IsVisible());
132 EXPECT_TRUE(dialog->GetWidget()->IsVisible());
136 EXPECT_FALSE(dialog->GetWidget()->IsVisible());
140 EXPECT_TRUE(dialog->GetWidget()->IsVisible());
153 EXPECT_TRUE(dialog->GetWidget()->IsVisible());
162 EXPECT_TRUE(dialog->GetWidget()->IsVisible());
[all...]
H A Ddropdown_bar_host_aura.cc28 if (!host_->IsVisible())
/external/chromium_org/chrome/browser/chromeos/ui/
H A Didle_app_name_notification_view.h39 bool IsVisible();
H A Didle_app_name_notification_view_unittest.cc102 EXPECT_TRUE(message->IsVisible());
105 for (int i = 0; i < 50 && message->IsVisible(); i++) {
109 EXPECT_FALSE(message->IsVisible());
/external/chromium_org/third_party/webrtc/base/
H A Dmacwindowpicker.h22 virtual bool IsVisible(const WindowId& id);
H A Dwin32windowpicker.h22 virtual bool IsVisible(const WindowId& id);
/external/chromium_org/ui/views/corewm/
H A Dtooltip.h40 virtual bool IsVisible() = 0;
/external/chromium_org/ppapi/c/
H A Dppb_view.h90 * IsVisible() determines whether the module instance might be visible to
93 * would not be visible to the user, but IsVisible() will return true.
108 PP_Bool (*IsVisible)(PP_Resource resource); member in struct:PPB_View_1_2
114 * Most applications should use IsVisible() instead of this function since
138 * IsPageVisible() and IsVisible() if you want to account for page
143 * visible, as determined by IsVisible(), and do no updates if it is not
223 PP_Bool (*IsVisible)(PP_Resource resource); member in struct:PPB_View_1_0
232 PP_Bool (*IsVisible)(PP_Resource resource); member in struct:PPB_View_1_1
/external/chromium_org/ui/wm/core/
H A Dvisibility_controller_unittest.cc40 EXPECT_TRUE(window->IsVisible());
44 EXPECT_TRUE(window->IsVisible());
53 EXPECT_FALSE(window->IsVisible());
/external/chromium_org/ppapi/thunk/
H A Dppb_view_thunk.cc41 PP_Bool IsVisible(PP_Resource resource) { function in namespace:ppapi::thunk::__anon10327
42 VLOG(4) << "PPB_View::IsVisible()";
46 return enter.object()->IsVisible();
93 &IsVisible,
102 &IsVisible,
113 &IsVisible,
H A Dppb_view_api.h25 virtual PP_Bool IsVisible() const = 0;
/external/chromium_org/athena/wm/
H A Dwindow_manager_unittest.cc69 EXPECT_TRUE(first->IsVisible());
70 EXPECT_TRUE(second->IsVisible());
76 EXPECT_FALSE(first->IsVisible());
77 EXPECT_TRUE(second->IsVisible());
90 EXPECT_TRUE(w1->IsVisible());
91 EXPECT_TRUE(w2->IsVisible());
92 EXPECT_TRUE(w3->IsVisible());
97 EXPECT_TRUE(w3->IsVisible());
98 EXPECT_TRUE(w2->IsVisible());
99 EXPECT_FALSE(w1->IsVisible());
[all...]
/external/chromium_org/chrome/browser/ui/ash/
H A Dshelf_browsertest.cc22 EXPECT_TRUE(shelf->IsVisible());
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_browsertest.cc35 bool IsVisible() { function in class:BookmarkBrowsertest
68 ASSERT_FALSE(IsVisible());
72 ASSERT_TRUE(IsVisible());
76 ASSERT_FALSE(IsVisible());
/external/chromium_org/chrome/browser/ui/website_settings/
H A Dpermission_bubble_view.h58 virtual bool IsVisible() = 0;
/external/chromium_org/ui/keyboard/
H A Dkeyboard_controller_unittest.cc290 EXPECT_TRUE(window->IsVisible());
291 EXPECT_TRUE(keyboard_container->IsVisible());
334 EXPECT_TRUE(window->IsVisible());
335 EXPECT_TRUE(keyboard_container->IsVisible());
404 EXPECT_TRUE(keyboard_container->IsVisible());
409 EXPECT_TRUE(keyboard_container->IsVisible());
413 EXPECT_FALSE(keyboard_container->IsVisible());
416 EXPECT_TRUE(keyboard_container->IsVisible());
425 EXPECT_TRUE(keyboard_container->IsVisible());
471 EXPECT_TRUE(keyboard_container->IsVisible());
[all...]
/external/chromium_org/ui/message_center/views/
H A Dmessage_bubble_base.cc52 bool MessageBubbleBase::IsVisible() const { function in class:message_center::MessageBubbleBase
53 return bubble_view() && bubble_view()->GetWidget()->IsVisible();
/external/chromium_org/athena/activity/public/
H A Dactivity.h85 virtual bool IsVisible() = 0;

Completed in 579 milliseconds

12345678910