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

Unified Diff: ash/test/shell_test_api.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/test/shell_test_api.h ('k') | ash/test/test_shell_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/shell_test_api.cc
diff --git a/ash/test/shell_test_api.cc b/ash/test/shell_test_api.cc
index b343f60c6a1997cff93e31178efe91db1c8beee4..b8c3e2da0ba7671d1884630d5dfd980fe233f93b 100644
--- a/ash/test/shell_test_api.cc
+++ b/ash/test/shell_test_api.cc
@@ -18,7 +18,7 @@ namespace test {
ShellTestApi::ShellTestApi(Shell* shell) : shell_(shell) {}
-internal::RootWindowLayoutManager* ShellTestApi::root_window_layout() {
+RootWindowLayoutManager* ShellTestApi::root_window_layout() {
return shell_->GetPrimaryRootWindowController()->root_window_layout();
}
@@ -27,17 +27,15 @@ ShellTestApi::input_method_event_filter() {
return shell_->input_method_filter_.get();
}
-internal::SystemGestureEventFilter*
-ShellTestApi::system_gesture_event_filter() {
+SystemGestureEventFilter* ShellTestApi::system_gesture_event_filter() {
return shell_->system_gesture_filter_.get();
}
-internal::WorkspaceController* ShellTestApi::workspace_controller() {
+WorkspaceController* ShellTestApi::workspace_controller() {
return shell_->GetPrimaryRootWindowController()->workspace_controller();
}
-internal::ScreenPositionController*
-ShellTestApi::screen_position_controller() {
+ScreenPositionController* ShellTestApi::screen_position_controller() {
return shell_->screen_position_controller_.get();
}
@@ -49,16 +47,15 @@ ShelfModel* ShellTestApi::shelf_model() {
return shell_->shelf_model_.get();
}
-internal::DragDropController* ShellTestApi::drag_drop_controller() {
+DragDropController* ShellTestApi::drag_drop_controller() {
return shell_->drag_drop_controller_.get();
}
-internal::AppListController* ShellTestApi::app_list_controller() {
+AppListController* ShellTestApi::app_list_controller() {
return shell_->app_list_controller_.get();
}
-internal::MaximizeModeWindowManager*
-ShellTestApi::maximize_mode_window_manager() {
+MaximizeModeWindowManager* ShellTestApi::maximize_mode_window_manager() {
return shell_->maximize_mode_window_manager_.get();
}
« no previous file with comments | « ash/test/shell_test_api.h ('k') | ash/test/test_shell_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698