HomeSort by relevance Sort by last modified time
    Searched defs:FocusController (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/ui/views/corewm/
focus_controller.h 20 // FocusController handles focus and activation changes for an environment
27 // (The FocusController must be set as the ActivationClient implementation
30 // (The FocusController must be registered as a pre-target handler for
33 // (The FocusController registers itself as an observer of the active and
35 class VIEWS_EXPORT FocusController : public aura::client::ActivationClient,
41 explicit FocusController(FocusRules* rules);
42 virtual ~FocusController();
124 DISALLOW_COPY_AND_ASSIGN(FocusController);
focus_controller.cc 55 // FocusController, public:
57 FocusController::FocusController(FocusRules* rules)
67 FocusController::~FocusController() {
71 // FocusController, aura::client::ActivationClient implementation:
73 void FocusController::AddObserver(
78 void FocusController::RemoveObserver(
83 void FocusController::ActivateWindow(aura::Window* window) {
87 void FocusController::DeactivateWindow(aura::Window* window)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.h 61 class FocusController {
62 WTF_MAKE_NONCOPYABLE(FocusController); WTF_MAKE_FAST_ALLOCATED;
64 static PassOwnPtr<FocusController> create(Page*);
85 explicit FocusController(Page*);
FocusController.cpp 28 #include "core/page/FocusController.h"
174 FocusController::FocusController(Page* page)
183 PassOwnPtr<FocusController> FocusController::create(Page* page)
185 return adoptPtr(new FocusController(page));
188 void FocusController::setFocusedFrame(PassRefPtr<Frame> frame)
215 Frame* FocusController::focusedOrMainFrame() const
222 void FocusController::setFocused(bool focused)
241 Node* FocusController::findFocusableNodeDecendingDownIntoFrameDocument(FocusDirection direction, Node* node
    [all...]

Completed in 132 milliseconds