| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_SCAN_RESULT_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_SCAN_RESULT_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_SCAN_RESULT_CONTROLLER_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_SCAN_RESULT_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <set> | 11 #include <set> |
| 10 #include <string> | 12 #include <string> |
| 11 | 13 |
| 12 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
| 15 #include "chrome/browser/media_galleries/media_galleries_dialog_controller.h" | 18 #include "chrome/browser/media_galleries/media_galleries_dialog_controller.h" |
| 16 #include "chrome/browser/media_galleries/media_galleries_preferences.h" | 19 #include "chrome/browser/media_galleries/media_galleries_preferences.h" |
| 17 #include "components/storage_monitor/removable_storage_observer.h" | 20 #include "components/storage_monitor/removable_storage_observer.h" |
| 18 | 21 |
| 19 namespace content { | 22 namespace content { |
| 20 class WebContents; | 23 class WebContents; |
| 21 } | 24 } |
| 22 | 25 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 158 |
| 156 // The view that's showing. | 159 // The view that's showing. |
| 157 scoped_ptr<MediaGalleriesDialog> dialog_; | 160 scoped_ptr<MediaGalleriesDialog> dialog_; |
| 158 | 161 |
| 159 scoped_ptr<MediaGalleryContextMenu> context_menu_; | 162 scoped_ptr<MediaGalleryContextMenu> context_menu_; |
| 160 | 163 |
| 161 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesScanResultController); | 164 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesScanResultController); |
| 162 }; | 165 }; |
| 163 | 166 |
| 164 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_SCAN_RESULT_CONTROLLER
_H_ | 167 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_SCAN_RESULT_CONTROLLER
_H_ |
| OLD | NEW |