Searched refs:view_storage (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/chrome/browser/ui/views/tab_contents/ |
D | chrome_web_contents_view_delegate_views.cc | 42 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/ |
D | focus_manager.cc | 430 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/ |
D | bubble_delegate.cc | 240 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/ |
D | native_view_accessibility_win.cc | 221 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/ |
D | accessible_pane_view.cc | 72 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()
|
D | views.gyp | 219 'focus/view_storage.cc', 220 'focus/view_storage.h',
|
D | view.cc | 2233 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()
|
D | view_unittest.cc | 3659 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/ |
D | accessibility_event_router_views.cc | 74 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()
|