Separates out accelerators using non-common types
These are the set of accelerators that have dependencies on parts not ported. I suspect some of these won't make sense in a mash world, but for now I'm lumping it all together.
BUG=612331
TEST=covered by tests
[email protected], [email protected]
Review-Url: https://codereview.chromium.org/2162193003
Cr-Commit-Position: refs/heads/master@{#406607}
diff --git a/ash/test/ash_test_helper.cc b/ash/test/ash_test_helper.cc
index acdf42ea..50d4475e 100644
--- a/ash/test/ash_test_helper.cc
+++ b/ash/test/ash_test_helper.cc
@@ -4,7 +4,7 @@
#include "ash/test/ash_test_helper.h"
-#include "ash/accelerators/accelerator_controller.h"
+#include "ash/accelerators/accelerator_controller_delegate_aura.h"
#include "ash/common/ash_switches.h"
#include "ash/common/display/display_info.h"
#include "ash/common/material_design/material_design_controller.h"
@@ -145,7 +145,7 @@
ShellTestApi(shell).DisableDisplayAnimator();
test_screenshot_delegate_ = new TestScreenshotDelegate();
- shell->accelerator_controller()->SetScreenshotDelegate(
+ shell->accelerator_controller_delegate()->SetScreenshotDelegate(
std::unique_ptr<ScreenshotDelegate>(test_screenshot_delegate_));
}