| 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 #ifndef ASH_COMMON_WALLPAPER_WALLPAPER_VIEW_H_ | 5 #ifndef ASH_WALLPAPER_WALLPAPER_VIEW_H_ |
| 6 #define ASH_COMMON_WALLPAPER_WALLPAPER_VIEW_H_ | 6 #define ASH_WALLPAPER_WALLPAPER_VIEW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ui/views/context_menu_controller.h" | 10 #include "ui/views/context_menu_controller.h" |
| 11 #include "ui/views/view.h" | 11 #include "ui/views/view.h" |
| 12 | 12 |
| 13 namespace ash { | 13 namespace ash { |
| 14 | 14 |
| 15 class PreEventDispatchHandler; | 15 class PreEventDispatchHandler; |
| 16 class WmWindow; | 16 class WmWindow; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 33 ui::MenuSourceType source_type) override; | 33 ui::MenuSourceType source_type) override; |
| 34 std::unique_ptr<PreEventDispatchHandler> pre_dispatch_handler_; | 34 std::unique_ptr<PreEventDispatchHandler> pre_dispatch_handler_; |
| 35 | 35 |
| 36 DISALLOW_COPY_AND_ASSIGN(WallpaperView); | 36 DISALLOW_COPY_AND_ASSIGN(WallpaperView); |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 views::Widget* CreateWallpaper(WmWindow* root_window, int container_id); | 39 views::Widget* CreateWallpaper(WmWindow* root_window, int container_id); |
| 40 | 40 |
| 41 } // namespace ash | 41 } // namespace ash |
| 42 | 42 |
| 43 #endif // ASH_COMMON_WALLPAPER_WALLPAPER_VIEW_H_ | 43 #endif // ASH_WALLPAPER_WALLPAPER_VIEW_H_ |
| OLD | NEW |