| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/common/system/chromeos/palette/tools/create_note_action.h" | 5 #include "ash/common/system/chromeos/palette/tools/create_note_action.h" |
| 6 | 6 |
| 7 #include "ash/common/palette_delegate.h" | 7 #include "ash/common/palette_delegate.h" |
| 8 #include "ash/common/system/chromeos/palette/palette_ids.h" | 8 #include "ash/common/system/chromeos/palette/palette_ids.h" |
| 9 #include "ash/common/wm_shell.h" | 9 #include "ash/common/wm_shell.h" |
| 10 #include "grit/ash_strings.h" | 10 #include "grit/ash_strings.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 delegate()->DisableTool(GetToolId()); | 33 delegate()->DisableTool(GetToolId()); |
| 34 delegate()->HidePalette(); | 34 delegate()->HidePalette(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 views::View* CreateNoteAction::CreateView() { | 37 views::View* CreateNoteAction::CreateView() { |
| 38 if (!WmShell::Get()->palette_delegate()->HasNoteApp()) | 38 if (!WmShell::Get()->palette_delegate()->HasNoteApp()) |
| 39 return nullptr; | 39 return nullptr; |
| 40 | 40 |
| 41 return CreateDefaultView( | 41 return CreateDefaultView( |
| 42 l10n_util::GetStringUTF16(IDS_ASH_PALETTE_CREATE_NOTE_ACTION)); | 42 l10n_util::GetStringUTF16(IDS_ASH_STYLUS_TOOLS_CREATE_NOTE_ACTION)); |
| 43 } | 43 } |
| 44 | 44 |
| 45 gfx::VectorIconId CreateNoteAction::GetPaletteIconId() { | 45 gfx::VectorIconId CreateNoteAction::GetPaletteIconId() { |
| 46 return gfx::VectorIconId::PALETTE_ACTION_CREATE_NOTE; | 46 return gfx::VectorIconId::PALETTE_ACTION_CREATE_NOTE; |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace ash | 49 } // namespace ash |
| OLD | NEW |