HomeSort by relevance Sort by last modified time
    Searched refs:FocusController (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/ui/wm/core/
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...]
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();
121 DISALLOW_COPY_AND_ASSIGN(FocusController);
focus_controller_unittest.cc 313 // occurring in FocusController::FocusWindow().
384 // Common infrastructure shared by all FocusController test types.
392 // FocusController registers itself as an Env observer so it can catch all
396 focus_controller_.reset(new FocusController(test_focus_rules_));
436 test_focus_rules_ = NULL; // Owned by FocusController.
489 scoped_ptr<FocusController> focus_controller_;
713 // FocusController's default setting.
720 // trigger the default setting in FocusController.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.h 63 class FocusController FINAL : public NoBaseWillBeGarbageCollectedFinalized<FocusController> {
64 WTF_MAKE_NONCOPYABLE(FocusController); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
66 static PassOwnPtrWillBeRawPtr<FocusController> create(Page*);
87 explicit FocusController(Page*);
FocusController.cpp 28 #include "core/page/FocusController.h"
224 FocusController::FocusController(Page* page)
232 PassOwnPtrWillBeRawPtr<FocusController> FocusController::create(Page* page)
234 return adoptPtrWillBeNoop(new FocusController(page));
237 void FocusController::setFocusedFrame(PassRefPtrWillBeRawPtr<Frame> frame)
267 void FocusController::focusDocumentView(PassRefPtrWillBeRawPtr<Frame> frame)
304 Frame* FocusController::focusedOrMainFrame() const
310 // FocusController needs to be refactored to deal with RemoteFrames cross-process focus transfers
    [all...]
Page.h 54 class FocusController;
146 FocusController& focusController() const { return *m_focusController; }
249 const OwnPtrWillBeMember<FocusController> m_focusController;
Page.cpp 49 #include "core/page/FocusController.h"
121 , m_focusController(FocusController::create(this))
  /external/chromium_org/mojo/views/
native_widget_view_manager.h 25 class FocusController;
57 scoped_ptr<wm::FocusController> focus_client_;
native_widget_view_manager.cc 108 focus_client_.reset(new wm::FocusController(new FocusRulesImpl));
  /external/chromium_org/extensions/shell/browser/
shell_desktop_controller.cc 244 wm::FocusController* focus_controller =
245 new wm::FocusController(new AppsFocusRules());
321 wm::FocusController* focus_controller =
322 static_cast<wm::FocusController*>(focus_client_.get());
  /external/chromium_org/athena/screen/
screen_manager_impl.cc 237 wm::FocusController* focus_controller =
238 static_cast<wm::FocusController*>(focus_client_.get());
253 wm::FocusController* focus_controller =
254 new wm::FocusController(new AthenaFocusRules());
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_native_widget_aura.h 34 class FocusController;
268 scoped_ptr<wm::FocusController> focus_client_;
desktop_native_widget_aura.cc 314 // FocusController uses |content_window_|. Destroy it now so that we don't
315 // have to worry about the possibility of FocusController attempting to use
469 wm::FocusController* focus_controller =
470 new wm::FocusController(new DesktopFocusRules(content_window_));
    [all...]
  /external/chromium_org/mojo/services/window_manager/
window_manager_app.cc 202 wm::FocusController* focus_controller =
203 new wm::FocusController(new WMFocusRules);
  /external/chromium_org/ash/
shell.cc 872 ::wm::FocusController* focus_controller =
873 new ::wm::FocusController(new wm::AshFocusRules);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.darwin-arm64.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.darwin-mips64.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.darwin-x86_64.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.linux-arm64.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]
webcore_remaining.target.linux-mips64.mk 494 third_party/WebKit/Source/core/page/FocusController.cpp \
    [all...]

Completed in 248 milliseconds

1 2