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

Unified Diff: ash/focus_cycler_unittest.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
« no previous file with comments | « ash/focus_cycler.cc ('k') | ash/frame/caption_buttons/alternate_frame_size_button.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/focus_cycler_unittest.cc
diff --git a/ash/focus_cycler_unittest.cc b/ash/focus_cycler_unittest.cc
index 5b25d966b3c654e5b98679899092bd0b5bb413b3..33c89c2c7f22c120ab3338138140cf3c995642d4 100644
--- a/ash/focus_cycler_unittest.cc
+++ b/ash/focus_cycler_unittest.cc
@@ -27,14 +27,11 @@ namespace ash {
namespace test {
using aura::Window;
-using internal::FocusCycler;
namespace {
-internal::StatusAreaWidgetDelegate* GetStatusAreaWidgetDelegate(
- views::Widget* widget) {
- return static_cast<internal::StatusAreaWidgetDelegate*>(
- widget->GetContentsView());
+StatusAreaWidgetDelegate* GetStatusAreaWidgetDelegate(views::Widget* widget) {
+ return static_cast<StatusAreaWidgetDelegate*>(widget->GetContentsView());
}
class PanedWidgetDelegate : public views::WidgetDelegate {
@@ -96,10 +93,11 @@ class FocusCyclerTest : public AshTestBase {
bool CreateTray() {
if (tray_)
return false;
- aura::Window* parent = Shell::GetPrimaryRootWindowController()->
- GetContainer(ash::internal::kShellWindowId_StatusContainer);
+ aura::Window* parent =
+ Shell::GetPrimaryRootWindowController()->GetContainer(
+ ash::kShellWindowId_StatusContainer);
- internal::StatusAreaWidget* widget = new internal::StatusAreaWidget(parent);
+ StatusAreaWidget* widget = new StatusAreaWidget(parent);
widget->CreateTrayViews();
widget->Show();
tray_.reset(widget->system_tray());
« no previous file with comments | « ash/focus_cycler.cc ('k') | ash/frame/caption_buttons/alternate_frame_size_button.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698