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

1 2 3

  /external/chromium_org/chrome/browser/download/
download_shelf_unittest.cc 47 TestDownloadShelf* shelf() { function in class:__anon7137::DownloadShelfTest
105 shelf()->Show();
106 EXPECT_TRUE(shelf()->IsShowing());
107 shelf()->Hide();
108 EXPECT_FALSE(shelf()->IsShowing());
109 shelf()->Unhide();
110 EXPECT_TRUE(shelf()->IsShowing());
114 shelf()->Show();
115 shelf()->Hide();
116 shelf()->Close(DownloadShelf::AUTOMATIC)
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
shelf_browsertest.cc 6 #include "ash/shelf/shelf_layout_manager.h"
17 // Confirm that a status bubble doesn't cause the shelf to darken.
19 ash::internal::ShelfLayoutManager* shelf = local
22 EXPECT_TRUE(shelf->IsVisible());
24 // Ensure that the browser abuts the shelf.
30 shelf->GetIdealBounds().y() - old_bounds.y());
32 EXPECT_FALSE(shelf->window_overlaps_shelf());
34 // Show status, which will overlap the shelf by a pixel.
37 shelf->UpdateVisibilityState();
40 EXPECT_FALSE(shelf->window_overlaps_shelf())
    [all...]
  /external/chromium_org/ash/shelf/
shelf_layout_manager_unittest.cc 5 #include "ash/shelf/shelf_layout_manager.h"
18 #include "ash/shelf/shelf_layout_manager_observer.h"
19 #include "ash/shelf/shelf_widget.h"
62 return Shell::GetPrimaryRootWindowController()->shelf();
95 // The state of the shelf at the end of the gesture is tested separately.
116 // if the shelf is being dimmed test dimmer bounds as well.
121 // The shelf should never be smaller than the hidden state.
143 // If dragging inwards from the visible state, then the shelf should
150 // If dragging outwards from the visible state, then the shelf
158 // Tests that the shelf sticks with the touch point during the dra
325 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
605 ShelfWidget* shelf = GetShelfWidget(); local
664 ShelfWidget* shelf = GetShelfWidget(); local
687 ShelfWidget* shelf = GetShelfWidget(); local
738 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
808 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
898 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
952 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
997 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1071 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1141 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1175 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1202 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1236 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1271 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1375 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1399 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1455 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1500 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1536 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
1586 ShelfWidget* shelf = GetShelfWidget(); local
1609 ShelfLayoutManager* shelf = GetShelfLayoutManager(); local
    [all...]
shelf_bezel_event_filter.h 17 // shelf.
20 explicit ShelfBezelEventFilter(ShelfLayoutManager* shelf);
shelf_widget_unittest.cc 5 #include "ash/shelf/shelf_widget.h"
12 #include "ash/shelf/shelf_layout_manager.h"
167 ShelfWidget* shelf = NULL; local
173 if (!(*i)->shelf()->launcher()) {
174 shelf = (*i)->shelf();
178 ASSERT_TRUE(shelf != NULL);
183 Launcher* launcher = shelf->launcher();
187 shelf->status_area_widget()->GetWindowBoundsInScreen().width();
190 shelf->GetContentsView()->width()
    [all...]
shelf_bezel_event_filter.cc 5 #include "ash/shelf/shelf_bezel_event_filter.h"
7 #include "ash/shelf/shelf_layout_manager.h"
14 ShelfLayoutManager* shelf)
15 : shelf_(shelf),
shelf_layout_manager.cc 5 #include "ash/shelf/shelf_layout_manager.h"
19 #include "ash/shelf/shelf_bezel_event_filter.h"
20 #include "ash/shelf/shelf_layout_manager_observer.h"
21 #include "ash/shelf/shelf_widget.h"
59 // To avoid hiding the shelf when the mouse transitions from a message bubble
60 // into the shelf, the hit test area is enlarged by this amount of pixels to
61 // keep the shelf from hiding.
64 // The maximum size of the region on the display opposing the shelf managed by
65 // this ShelfLayoutManager which can trigger showing the shelf.
68 // - Shelf is left aligne
557 ShelfWidget* shelf = RootWindowController::ForLauncher(window)->shelf(); local
    [all...]
  /external/chromium_org/ash/wm/gestures/
shelf_gesture_handler.cc 9 #include "ash/shelf/shelf_layout_manager.h"
10 #include "ash/shelf/shelf_types.h"
11 #include "ash/shelf/shelf_widget.h"
44 ShelfLayoutManager* shelf = controller->GetShelfLayoutManager(); local
49 if (fullscreen && !shelf->FullscreenWithMinimalChrome())
54 shelf->StartGestureDrag(event);
65 } else if (shelf->UpdateGestureDrag(event) ==
82 shelf->CompleteGestureDrag(event);
87 shelf->CancelGestureDrag();
  /external/chromium_org/ash/wm/
ash_activation_controller.cc 9 #include "ash/shelf/shelf_widget.h"
85 ShelfWidget* shelf = GetRootWindowController(
86 Shell::GetActiveRootWindow())->shelf();
88 if (!shelf)
91 shelf->WillActivateAsFallback();
92 return shelf->GetNativeWindow();
status_area_layout_manager.cc 7 #include "ash/shelf/shelf_layout_manager.h"
8 #include "ash/shelf/shelf_widget.h"
20 StatusAreaLayoutManager::StatusAreaLayoutManager(ShelfWidget* shelf)
22 shelf_(shelf) {
52 // Only need to have the shelf do a layout if the child changing is the status
53 // area and the shelf isn't in the process of doing a layout.
60 // that is managed by the shelf.
72 // Shelf layout manager may be already doing layout.
workspace_controller.h 35 void SetShelf(ShelfLayoutManager* shelf);
status_area_layout_manager.h 21 explicit StatusAreaLayoutManager(ShelfWidget* shelf);
36 // to update layout of the shelf.
workspace_controller.cc 7 #include "ash/shelf/shelf_layout_manager.h"
93 void WorkspaceController::SetShelf(ShelfLayoutManager* shelf) {
94 shelf_ = shelf;
95 layout_manager_->SetShelf(shelf);
workspace_controller_unittest.cc 12 #include "ash/shelf/shelf_layout_manager.h"
13 #include "ash/shelf/shelf_widget.h"
126 return Shell::GetPrimaryRootWindowController()->shelf();
337 // it isn't over the shelf.
344 ShelfLayoutManager* shelf = shelf_layout_manager(); local
345 shelf->SetAutoHideBehavior(ash::SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS);
347 0, shelf->GetIdealBounds().y() - 10, 101, 102);
348 // Move |w1| to overlap the shelf.
359 // Make it visible, since visible shelf overlaps should be true.
368 EXPECT_EQ(SHELF_AUTO_HIDE, shelf->visibility_state())
546 ShelfLayoutManager* shelf = shelf_layout_manager(); local
574 ShelfLayoutManager* shelf = shelf_layout_manager(); local
635 ShelfLayoutManager* shelf = shelf_layout_manager(); local
    [all...]
  /external/chromium_org/ash/launcher/
launcher_view.cc 24 #include "ash/shelf/shelf_layout_manager.h"
25 #include "ash/shelf/shelf_widget.h"
451 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
453 shelf->SelectValueForShelfAlignment(
458 shelf->SelectValueForShelfAlignment(
507 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
510 shelf->PrimaryAxisValue(view_model_->ideal_bounds(target_index).x(),
512 shelf->PrimaryAxisValue(midpoint_in_view.x(), midpoint_in_view.y())) {
516 shelf->PrimaryAxisValue(
519 shelf->PrimaryAxisValue(midpoint_in_view.x(), midpoint_in_view.y()))
693 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
847 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
860 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
934 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
990 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
1211 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
1406 ShelfLayoutManager* shelf = tooltip_->shelf_layout_manager(); local
1608 ShelfWidget* shelf = RootWindowController::ForLauncher( local
    [all...]
launcher_tooltip_manager_unittest.cc 8 #include "ash/shelf/shelf_layout_manager.h"
9 #include "ash/shelf/shelf_widget.h"
47 controller->shelf()->launcher()->GetLauncherViewForTest()));
121 // Create a full-screen window to hide the shelf.
130 // Once the shelf is hidden, the tooltip should be invisible.
137 // Do not show the view if the shelf is hidden.
141 // ShowDelayed() doesn't even start the timer for the hidden shelf.
158 internal::ShelfLayoutManager* shelf = local
160 shelf->SetAutoHideBehavior(SHELF_AUTO_HIDE_BEHAVIOR_ALWAYS);
161 shelf->UpdateAutoHideState()
    [all...]
launcher.cc 17 #include "ash/shelf/shelf_layout_manager.h"
18 #include "ash/shelf/shelf_widget.h"
65 Shell::GetPrimaryRootWindow())->shelf();
72 internal::RootWindowController::ForLauncher(window)->shelf();
overflow_button.cc 8 #include "ash/shelf/shelf_layout_manager.h"
9 #include "ash/shelf/shelf_widget.h"
37 // Padding from the inner edge of the shelf (towards center of display) to
63 ShelfLayoutManager* shelf = local
67 if (shelf->IsHorizontalAlignment()) {
  /external/chromium/chrome/browser/ui/cocoa/download/
download_item_controller.h 50 // Weak pointer to the shelf that owns us.
65 shelf:(DownloadShelfController*)shelf;
  /external/chromium_org/chrome/browser/ui/cocoa/download/
download_item_controller.h 59 // Weak pointer to the shelf that owns us.
77 shelf:(DownloadShelfController*)shelf
  /external/chromium_org/chrome/browser/ui/views/frame/
immersive_mode_controller_ash_browsertest.cc 9 #include "ash/shelf/shelf_layout_manager.h"
10 #include "ash/shelf/shelf_types.h"
132 // Shelf hide triggered by enabling immersive mode eventually changes the
185 // Shelf hide triggered by enabling immersive mode eventually changes the
333 // Shelf-specific immersive mode tests.
335 // Shelf is visible when the test starts.
336 ash::internal::ShelfLayoutManager* shelf = local
338 ASSERT_EQ(ash::SHELF_VISIBLE, shelf->visibility_state());
340 // Turning immersive mode on sets the shelf to auto-hide.
344 EXPECT_EQ(ash::SHELF_AUTO_HIDE, shelf->visibility_state())
373 ash::internal::ShelfLayoutManager* shelf = local
    [all...]
  /external/chromium_org/ash/system/
tray_update.cc 8 #include "ash/shelf/shelf_layout_manager.h"
9 #include "ash/shelf/shelf_widget.h"
114 Shell::GetPrimaryRootWindowController()->shelf()->status_area_widget();
139 if (Shell::GetPrimaryRootWindowController()->shelf()->IsVisible())
197 if (!Shell::GetPrimaryRootWindowController()->shelf()->IsVisible() &&
199 // The shelf is not visible, and there is no nagger scheduled.
  /external/chromium_org/ash/system/chromeos/network/
network_state_notifier_unittest.cc 8 #include "ash/shelf/shelf_widget.h"
23 return ash::Shell::GetPrimaryRootWindowController()->shelf()->
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager.h 39 void SetShelf(internal::ShelfLayoutManager* shelf);
  /external/chromium_org/ash/system/user/
tray_user_unittest.cc 8 #include "ash/shelf/shelf_layout_manager.h"
44 ShelfLayoutManager* shelf() { return shelf_; } function in class:ash::internal::TrayUserTest
53 // Note that the ownership of these items is on the shelf.
75 // Show the shelf.
76 shelf()->LayoutShelf();
77 shelf()->SetAutoHideBehavior(SHELF_AUTO_HIDE_BEHAVIOR_NEVER);

Completed in 440 milliseconds

1 2 3