| Index: ash/accelerators/accelerator_filter_unittest.cc
 | 
| diff --git a/ash/accelerators/accelerator_filter_unittest.cc b/ash/accelerators/accelerator_filter_unittest.cc
 | 
| index c686a16fcc2938284b0251ae3d74c9b1924525ac..2a0de7aea8a494a7e8d779ac0f7bfa08172afd88 100644
 | 
| --- a/ash/accelerators/accelerator_filter_unittest.cc
 | 
| +++ b/ash/accelerators/accelerator_filter_unittest.cc
 | 
| @@ -108,8 +108,8 @@ TEST_F(AcceleratorFilterTest, CanConsumeSystemKeys) {
 | 
|    EXPECT_FALSE(press_a.stopped_propagation());
 | 
|  
 | 
|    // System keys are directly consumed.
 | 
| -  ui::KeyEvent press_mute(
 | 
| -      ui::ET_KEY_PRESSED, ui::VKEY_VOLUME_MUTE, ui::EF_NONE);
 | 
| +  ui::KeyEvent press_mute(ui::ET_KEY_PRESSED, ui::VKEY_VOLUME_MUTE,
 | 
| +                          ui::EF_NONE);
 | 
|    {
 | 
|      ui::Event::DispatcherApi dispatch_helper(&press_mute);
 | 
|      dispatch_helper.set_target(root_window);
 | 
| @@ -120,8 +120,8 @@ TEST_F(AcceleratorFilterTest, CanConsumeSystemKeys) {
 | 
|    // Setting a window property on the target allows system keys to pass through.
 | 
|    std::unique_ptr<aura::Window> window(CreateTestWindowInShellWithId(1));
 | 
|    wm::GetWindowState(window.get())->set_can_consume_system_keys(true);
 | 
| -  ui::KeyEvent press_volume_up(
 | 
| -      ui::ET_KEY_PRESSED, ui::VKEY_VOLUME_UP, ui::EF_NONE);
 | 
| +  ui::KeyEvent press_volume_up(ui::ET_KEY_PRESSED, ui::VKEY_VOLUME_UP,
 | 
| +                               ui::EF_NONE);
 | 
|    ui::Event::DispatcherApi dispatch_helper(&press_volume_up);
 | 
|    dispatch_helper.set_target(window.get());
 | 
|    filter.OnKeyEvent(&press_volume_up);
 | 
| 
 |