HomeSort by relevance Sort by last modified time
    Searched refs:view_storage (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/browser/ui/views/tab_contents/
chrome_web_contents_view_delegate_views.cc 23 #include "ui/views/focus/view_storage.h"
41 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); local
42 if (view_storage->RetrieveView(last_focused_view_storage_id_) != NULL)
43 view_storage->RemoveView(last_focused_view_storage_id_);
86 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); local
88 if (view_storage->RetrieveView(last_focused_view_storage_id_) != NULL)
89 view_storage->RemoveView(last_focused_view_storage_id_);
95 view_storage->StoreView(last_focused_view_storage_id_, focused_view);
99 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); local
101 view_storage->RetrieveView(last_focused_view_storage_id_)
    [all...]
  /external/chromium_org/ui/views/bubble/
bubble_delegate.cc 13 #include "ui/views/focus/view_storage.h"
246 ViewStorage* view_storage = ViewStorage::GetInstance(); local
247 if (view_storage->RetrieveView(anchor_view_storage_id_))
248 view_storage->RemoveView(anchor_view_storage_id_);
250 view_storage->StoreView(anchor_view_storage_id_, anchor_view);
  /external/chromium_org/ui/views/focus/
focus_manager.cc 22 #include "ui/views/focus/view_storage.h"
411 ViewStorage* view_storage = ViewStorage::GetInstance(); local
412 if (!view_storage) {
421 view_storage->RemoveView(stored_focused_view_storage_id_);
426 view_storage->StoreView(stored_focused_view_storage_id_, focus_view);
430 ViewStorage* view_storage = ViewStorage::GetInstance(); local
431 if (!view_storage) {
437 return view_storage->RetrieveView(stored_focused_view_storage_id_);
  /external/chromium_org/ui/views/
accessible_pane_view.cc 10 #include "ui/views/focus/view_storage.h"
72 ViewStorage* view_storage = ViewStorage::GetInstance(); local
73 view_storage->RemoveView(last_focused_view_storage_id_);
74 view_storage->StoreView(last_focused_view_storage_id_, focused_view);
view.cc 42 #include "ui/views/focus/view_storage.h"
2288 ViewStorage* view_storage = ViewStorage::GetInstance(); local
    [all...]
view_unittest.cc 29 #include "ui/views/focus/view_storage.h"
3926 ViewStorage* view_storage = ViewStorage::GetInstance(); local
    [all...]
  /external/chromium_org/ui/views/accessibility/
native_view_accessibility_win.cc 26 #include "ui/views/focus/view_storage.h"
222 ViewStorage* view_storage = ViewStorage::GetInstance();
226 view_storage_id = view_storage->CreateStorageID();
229 view_storage->RemoveView(view_storage_id);
231 view_storage->StoreView(view_storage_id, view_);
516 ViewStorage* view_storage = ViewStorage::GetInstance(); local
517 child_view = view_storage->RetrieveView(view_storage_id);
896 ViewStorage* view_storage = ViewStorage::GetInstance(); local
899 View* view = view_storage->RetrieveView(view_storage_id);
1477 ViewStorage* view_storage = ViewStorage::GetInstance(); local
1490 ViewStorage* view_storage = ViewStorage::GetInstance(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/accessibility/
accessibility_event_router_views.cc 22 #include "ui/views/focus/view_storage.h"
71 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); local
72 int view_storage_id = view_storage->CreateStorageID();
73 view_storage->StoreView(view_storage_id, view);
123 views::ViewStorage* view_storage = views::ViewStorage::GetInstance(); local
124 views::View* view = view_storage->RetrieveView(view_storage_id);
125 view_storage->RemoveView(view_storage_id);

Completed in 54 milliseconds