Home
last modified time | relevance | path

Searched refs:view_storage (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/chrome/browser/ui/views/tab_contents/
Dchrome_web_contents_view_delegate_views.cc42 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); in ~ChromeWebContentsViewDelegateViews() local
43 if (view_storage->RetrieveView(last_focused_view_storage_id_) != NULL) in ~ChromeWebContentsViewDelegateViews()
44 view_storage->RemoveView(last_focused_view_storage_id_); in ~ChromeWebContentsViewDelegateViews()
80 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); in StoreFocus() local
82 if (view_storage->RetrieveView(last_focused_view_storage_id_) != NULL) in StoreFocus()
83 view_storage->RemoveView(last_focused_view_storage_id_); in StoreFocus()
89 view_storage->StoreView(last_focused_view_storage_id_, focused_view); in StoreFocus()
93 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); in RestoreFocus() local
95 view_storage->RetrieveView(last_focused_view_storage_id_); in RestoreFocus()
111 view_storage->RemoveView(last_focused_view_storage_id_); in RestoreFocus()
/external/chromium_org/ui/views/focus/
Dfocus_manager.cc430 ViewStorage* view_storage = ViewStorage::GetInstance(); in SetStoredFocusView() local
431 if (!view_storage) { in SetStoredFocusView()
440 view_storage->RemoveView(stored_focused_view_storage_id_); in SetStoredFocusView()
445 view_storage->StoreView(stored_focused_view_storage_id_, focus_view); in SetStoredFocusView()
449 ViewStorage* view_storage = ViewStorage::GetInstance(); in GetStoredFocusView() local
450 if (!view_storage) { in GetStoredFocusView()
456 return view_storage->RetrieveView(stored_focused_view_storage_id_); in GetStoredFocusView()
/external/chromium_org/ui/views/bubble/
Dbubble_delegate.cc240 ViewStorage* view_storage = ViewStorage::GetInstance(); in SetAnchorView() local
241 if (view_storage->RetrieveView(anchor_view_storage_id_)) in SetAnchorView()
242 view_storage->RemoveView(anchor_view_storage_id_); in SetAnchorView()
244 view_storage->StoreView(anchor_view_storage_id_, anchor_view); in SetAnchorView()
/external/chromium_org/ui/views/accessibility/
Dnative_view_accessibility_win.cc221 ViewStorage* view_storage = ViewStorage::GetInstance(); in NotifyAccessibilityEvent() local
225 view_storage_id = view_storage->CreateStorageID(); in NotifyAccessibilityEvent()
228 view_storage->RemoveView(view_storage_id); in NotifyAccessibilityEvent()
230 view_storage->StoreView(view_storage_id, view_); in NotifyAccessibilityEvent()
515 ViewStorage* view_storage = ViewStorage::GetInstance(); in get_accChild() local
516 child_view = view_storage->RetrieveView(view_storage_id); in get_accChild()
899 ViewStorage* view_storage = ViewStorage::GetInstance(); in get_relationTargetsOfType() local
902 View* view = view_storage->RetrieveView(view_storage_id); in get_relationTargetsOfType()
1513 ViewStorage* view_storage = ViewStorage::GetInstance(); in AddAlertTarget() local
1516 View* view = view_storage->RetrieveView(view_storage_id); in AddAlertTarget()
[all …]
/external/chromium_org/ui/views/
Daccessible_pane_view.cc72 ViewStorage* view_storage = ViewStorage::GetInstance(); in SetPaneFocus() local
73 view_storage->RemoveView(last_focused_view_storage_id_); in SetPaneFocus()
74 view_storage->StoreView(last_focused_view_storage_id_, focused_view); in SetPaneFocus()
Dviews.gyp219 'focus/view_storage.cc',
220 'focus/view_storage.h',
Dview.cc2233 ViewStorage* view_storage = ViewStorage::GetInstance(); in ProcessMousePressed() local
2234 storage_id = view_storage->CreateStorageID(); in ProcessMousePressed()
2235 view_storage->StoreView(storage_id, this); in ProcessMousePressed()
Dview_unittest.cc3659 ViewStorage* view_storage = ViewStorage::GetInstance(); in TEST_F() local
3660 const int storage_id = view_storage->CreateStorageID(); in TEST_F()
3663 view_storage->StoreView(storage_id, &view); in TEST_F()
3665 EXPECT_TRUE(view_storage->RetrieveView(storage_id) == NULL); in TEST_F()
/external/chromium_org/chrome/browser/ui/views/accessibility/
Daccessibility_event_router_views.cc74 ViewStorage* view_storage = ViewStorage::GetInstance(); in HandleAccessibilityEvent() local
75 int view_storage_id = view_storage->CreateStorageID(); in HandleAccessibilityEvent()
76 view_storage->StoreView(view_storage_id, view); in HandleAccessibilityEvent()
126 ViewStorage* view_storage = ViewStorage::GetInstance(); in DispatchEventOnViewStorageId() local
127 views::View* view = view_storage->RetrieveView(view_storage_id); in DispatchEventOnViewStorageId()
128 view_storage->RemoveView(view_storage_id); in DispatchEventOnViewStorageId()