Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(920)

Side by Side Diff: ash/common/system/tray/tray_details_view.cc

Issue 2698213004: Start removing some pre-md constants and related code. (Closed)
Patch Set: actually use the constant Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/common/system/tray/tray_details_view.h" 5 #include "ash/common/system/tray/tray_details_view.h"
6 6
7 #include "ash/common/ash_view_ids.h" 7 #include "ash/common/ash_view_ids.h"
8 #include "ash/common/material_design/material_design_controller.h" 8 #include "ash/common/material_design/material_design_controller.h"
9 #include "ash/common/system/tray/system_menu_button.h" 9 #include "ash/common/system/tray/system_menu_button.h"
10 #include "ash/common/system/tray/system_tray.h" 10 #include "ash/common/system/tray/system_tray.h"
11 #include "ash/common/system/tray/system_tray_item.h" 11 #include "ash/common/system/tray/system_tray_item.h"
12 #include "ash/common/system/tray/tray_constants.h" 12 #include "ash/common/system/tray/tray_constants.h"
13 #include "ash/common/system/tray/tray_popup_item_style.h" 13 #include "ash/common/system/tray/tray_popup_item_style.h"
14 #include "ash/common/system/tray/tray_popup_utils.h" 14 #include "ash/common/system/tray/tray_popup_utils.h"
15 #include "ash/common/system/tray/tri_view.h" 15 #include "ash/common/system/tray/tri_view.h"
16 #include "base/containers/adapters.h" 16 #include "base/containers/adapters.h"
17 #include "base/memory/ptr_util.h" 17 #include "base/memory/ptr_util.h"
18 #include "base/timer/timer.h"
19 #include "grit/ash_strings.h" 18 #include "grit/ash_strings.h"
20 #include "third_party/skia/include/core/SkDrawLooper.h" 19 #include "third_party/skia/include/core/SkDrawLooper.h"
21 #include "ui/base/resource/resource_bundle.h" 20 #include "ui/base/resource/resource_bundle.h"
22 #include "ui/compositor/paint_context.h" 21 #include "ui/compositor/paint_context.h"
23 #include "ui/compositor/paint_recorder.h" 22 #include "ui/compositor/paint_recorder.h"
24 #include "ui/gfx/canvas.h" 23 #include "ui/gfx/canvas.h"
25 #include "ui/gfx/skia_paint_util.h" 24 #include "ui/gfx/skia_paint_util.h"
26 #include "ui/views/background.h" 25 #include "ui/views/background.h"
27 #include "ui/views/border.h" 26 #include "ui/views/border.h"
28 #include "ui/views/controls/label.h" 27 #include "ui/views/controls/label.h"
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 owner_->set_restore_focus(true); 450 owner_->set_restore_focus(true);
452 } else { 451 } else {
453 if (title_row_ && title_row_->content() && 452 if (title_row_ && title_row_->content() &&
454 title_row_->content()->HasFocus()) { 453 title_row_->content()->HasFocus()) {
455 owner_->set_restore_focus(true); 454 owner_->set_restore_focus(true);
456 } 455 }
457 DoTransitionToDefaultView(); 456 DoTransitionToDefaultView();
458 return; 457 return;
459 } 458 }
460 459
461 const int transition_delay = 460 transition_delay_timer_.Start(
462 GetTrayConstant(TRAY_POPUP_TRANSITION_TO_DEFAULT_DELAY); 461 FROM_HERE,
463 if (transition_delay <= 0) { 462 base::TimeDelta::FromMilliseconds(kTrayDetailedViewTransitionDelayMs),
464 DoTransitionToDefaultView(); 463 this, &TrayDetailsView::DoTransitionToDefaultView);
465 return;
466 }
467
468 transition_delay_timer_.reset(new base::OneShotTimer());
469 transition_delay_timer_->Start(
470 FROM_HERE, base::TimeDelta::FromMilliseconds(transition_delay), this,
471 &TrayDetailsView::DoTransitionToDefaultView);
472 } 464 }
473 465
474 void TrayDetailsView::DoTransitionToDefaultView() { 466 void TrayDetailsView::DoTransitionToDefaultView() {
475 transition_delay_timer_.reset();
476
477 // Cache pointer to owner in this function scope. TrayDetailsView will be 467 // Cache pointer to owner in this function scope. TrayDetailsView will be
478 // deleted after called ShowDefaultView. 468 // deleted after called ShowDefaultView.
479 SystemTrayItem* owner = owner_; 469 SystemTrayItem* owner = owner_;
480 owner->system_tray()->ShowDefaultView(BUBBLE_USE_EXISTING); 470 owner->system_tray()->ShowDefaultView(BUBBLE_USE_EXISTING);
481 owner->set_restore_focus(false); 471 owner->set_restore_focus(false);
482 } 472 }
483 473
484 views::Button* TrayDetailsView::CreateBackButton() { 474 views::Button* TrayDetailsView::CreateBackButton() {
485 DCHECK(UseMd()); 475 DCHECK(UseMd());
486 SystemMenuButton* button = new SystemMenuButton( 476 SystemMenuButton* button = new SystemMenuButton(
(...skipping 24 matching lines...) Expand all
511 if (index < child_count() - 1 && child_at(index + 1) != title_row_) 501 if (index < child_count() - 1 && child_at(index + 1) != title_row_)
512 scroll_border_->set_visible(true); 502 scroll_border_->set_visible(true);
513 else 503 else
514 scroll_border_->set_visible(false); 504 scroll_border_->set_visible(false);
515 } 505 }
516 506
517 views::View::OnPaintBorder(canvas); 507 views::View::OnPaintBorder(canvas);
518 } 508 }
519 509
520 } // namespace ash 510 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/system/tray/tray_details_view.h ('k') | ash/common/system/tray/tray_details_view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698