Home | History | Annotate | Download | only in win

Lines Matching refs:Appbar

5 #include "ui/views/win/appbar.h"
24 *edge = Appbar::EDGE_LEFT;
26 *edge = Appbar::EDGE_TOP;
28 *edge = Appbar::EDGE_RIGHT;
30 *edge = Appbar::EDGE_BOTTOM;
36 Appbar* Appbar::instance() {
37 static Appbar* appbar = NULL;
38 if (!appbar)
39 appbar = new Appbar();
40 return appbar;
43 int Appbar::GetAutohideEdges(HMONITOR monitor, const base::Closure& callback) {
46 // windows will automatically remove WS_EX_TOPMOST from the appbar resulting
51 edge_map_[monitor] = Appbar::EDGE_BOTTOM;
59 base::Bind(&Appbar::OnGotEdges,
70 Appbar::Appbar() : weak_factory_(this), in_callback_(false) {
73 Appbar::~Appbar() {
76 void Appbar::OnGotEdges(const base::Closure& callback,