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

Unified Diff: chrome/browser/chromeos/display/overscan_calibrator.cc

Issue 224113005: Eliminate ash::internal namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/display/overscan_calibrator.cc
diff --git a/chrome/browser/chromeos/display/overscan_calibrator.cc b/chrome/browser/chromeos/display/overscan_calibrator.cc
index de8f1905c8c8eb47ac0c55a0d254329375ebe153..e1a9a256a8aa64d37751bfb724dd8c84b76aee98 100644
--- a/chrome/browser/chromeos/display/overscan_calibrator.cc
+++ b/chrome/browser/chromeos/display/overscan_calibrator.cc
@@ -70,13 +70,15 @@ OverscanCalibrator::OverscanCalibrator(
ash::Shell::GetInstance()->display_controller()->SetOverscanInsets(
display_.id(), gfx::Insets());
- ash::internal::DisplayInfo info = ash::Shell::GetInstance()->
- display_manager()->GetDisplayInfo(display_.id());
+ ash::DisplayInfo info =
+ ash::Shell::GetInstance()->display_manager()->GetDisplayInfo(
+ display_.id());
aura::Window* root = ash::Shell::GetInstance()->display_controller()->
GetRootWindowForDisplayId(display_.id());
- ui::Layer* parent_layer = ash::Shell::GetContainer(
- root, ash::internal::kShellWindowId_OverlayContainer)->layer();
+ ui::Layer* parent_layer =
+ ash::Shell::GetContainer(root, ash::kShellWindowId_OverlayContainer)
+ ->layer();
calibration_layer_.reset(new ui::Layer());
calibration_layer_->SetOpacity(0.5f);

Powered by Google App Engine
This is Rietveld 408576698