| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/shell/shell_delegate_impl.h" | 5 #include "ash/shell/shell_delegate_impl.h" |
| 6 | 6 |
| 7 #include "ash/app_list/app_list_presenter_delegate_factory.h" | 7 #include "ash/app_list/app_list_presenter_delegate_factory.h" |
| 8 #include "ash/common/accessibility_delegate.h" | 8 #include "ash/common/accessibility_delegate.h" |
| 9 #include "ash/common/default_accessibility_delegate.h" | 9 #include "ash/common/default_accessibility_delegate.h" |
| 10 #include "ash/common/gpu_support_stub.h" | 10 #include "ash/common/gpu_support_stub.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 private: | 79 private: |
| 80 DISALLOW_COPY_AND_ASSIGN(MediaDelegateImpl); | 80 DISALLOW_COPY_AND_ASSIGN(MediaDelegateImpl); |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 class PaletteDelegateImpl : public PaletteDelegate { | 83 class PaletteDelegateImpl : public PaletteDelegate { |
| 84 public: | 84 public: |
| 85 PaletteDelegateImpl() {} | 85 PaletteDelegateImpl() {} |
| 86 ~PaletteDelegateImpl() override {} | 86 ~PaletteDelegateImpl() override {} |
| 87 | 87 |
| 88 // PaletteDelegate: | 88 // PaletteDelegate: |
| 89 void CreateNote() override {} |
| 90 bool HasNoteApp() override { return false; } |
| 89 void TakeScreenshot() override {} | 91 void TakeScreenshot() override {} |
| 90 void TakePartialScreenshot() override {} | 92 void TakePartialScreenshot() override {} |
| 91 | 93 |
| 92 private: | 94 private: |
| 93 DISALLOW_COPY_AND_ASSIGN(PaletteDelegateImpl); | 95 DISALLOW_COPY_AND_ASSIGN(PaletteDelegateImpl); |
| 94 }; | 96 }; |
| 95 | 97 |
| 96 class SessionStateDelegateImpl : public SessionStateDelegate { | 98 class SessionStateDelegateImpl : public SessionStateDelegate { |
| 97 public: | 99 public: |
| 98 SessionStateDelegateImpl() | 100 SessionStateDelegateImpl() |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 base::string16 ShellDelegateImpl::GetProductName() const { | 281 base::string16 ShellDelegateImpl::GetProductName() const { |
| 280 return base::string16(); | 282 return base::string16(); |
| 281 } | 283 } |
| 282 | 284 |
| 283 gfx::Image ShellDelegateImpl::GetDeprecatedAcceleratorImage() const { | 285 gfx::Image ShellDelegateImpl::GetDeprecatedAcceleratorImage() const { |
| 284 return gfx::Image(); | 286 return gfx::Image(); |
| 285 } | 287 } |
| 286 | 288 |
| 287 } // namespace shell | 289 } // namespace shell |
| 288 } // namespace ash | 290 } // namespace ash |
| OLD | NEW |