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

  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.h 66 class FocusController {
67 WTF_MAKE_NONCOPYABLE(FocusController); WTF_MAKE_FAST_ALLOCATED;
69 static PassOwnPtr<FocusController> create(Page*);
88 explicit FocusController(Page*);
FocusController.cpp 28 #include "core/page/FocusController.h"
224 FocusController::FocusController(Page* page)
232 PassOwnPtr<FocusController> FocusController::create(Page* page)
234 return adoptPtr(new FocusController(page));
237 void FocusController::setFocusedFrame(PassRefPtr<Frame> frame)
266 void FocusController::focusDocumentView(PassRefPtr<Frame> frame)
303 Frame* FocusController::focusedOrMainFrame() const
310 void FocusController::setFocused(bool focused
    [all...]
  /external/chromium_org/ui/wm/core/
focus_controller.h 22 // FocusController handles focus and activation changes for an environment
29 // (The FocusController must be set as the ActivationClient implementation
32 // (The FocusController must be registered as a pre-target handler for
35 // (The FocusController registers itself as an observer of the active and
37 class WM_EXPORT FocusController : public aura::client::ActivationClient,
43 explicit FocusController(FocusRules* rules);
44 virtual ~FocusController();
123 DISALLOW_COPY_AND_ASSIGN(FocusController);
focus_controller.cc 39 // FocusController, public:
41 FocusController::FocusController(FocusRules* rules)
51 FocusController::~FocusController() {
55 // FocusController, aura::client::ActivationClient implementation:
57 void FocusController::AddObserver(
62 void FocusController::RemoveObserver(
67 void FocusController::ActivateWindow(aura::Window* window) {
71 void FocusController::DeactivateWindow(aura::Window* window)
    [all...]

Completed in 77 milliseconds