diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-08 16:54:53 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-08 16:54:53 +0000 |
commit | 0c68e894ddf194189fcbab079b97cf6ff47929da (patch) | |
tree | ec2a9b57930c30dc4bcf2bae73b86c4555de40fd /ash/shell.cc | |
parent | 486238b191a6d7439dcda4aa04c662e2e3edd608 (diff) | |
download | chromium_src-0c68e894ddf194189fcbab079b97cf6ff47929da.zip chromium_src-0c68e894ddf194189fcbab079b97cf6ff47929da.tar.gz chromium_src-0c68e894ddf194189fcbab079b97cf6ff47929da.tar.bz2 |
[Clenup] Split ShellTestApi into separate file
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/11476032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171977 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell.cc')
-rw-r--r-- | ash/shell.cc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/ash/shell.cc b/ash/shell.cc index 4e6580a..ba58f5d 100644 --- a/ash/shell.cc +++ b/ash/shell.cc @@ -185,34 +185,6 @@ Shell* Shell::instance_ = NULL; bool Shell::initially_hide_cursor_ = false; //////////////////////////////////////////////////////////////////////////////// -// Shell::TestApi - -Shell::TestApi::TestApi(Shell* shell) : shell_(shell) {} - -internal::RootWindowLayoutManager* Shell::TestApi::root_window_layout() { - return shell_->GetPrimaryRootWindowController()->root_window_layout(); -} - -views::corewm::InputMethodEventFilter* - Shell::TestApi::input_method_event_filter() { - return shell_->input_method_filter_.get(); -} - -internal::SystemGestureEventFilter* - Shell::TestApi::system_gesture_event_filter() { - return shell_->system_gesture_filter_.get(); -} - -internal::WorkspaceController* Shell::TestApi::workspace_controller() { - return shell_->GetPrimaryRootWindowController()->workspace_controller(); -} - -internal::ScreenPositionController* - Shell::TestApi::screen_position_controller() { - return shell_->screen_position_controller_.get(); -} - -//////////////////////////////////////////////////////////////////////////////// // Shell, public: Shell::Shell(ShellDelegate* delegate) |