| 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 CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <list> | |
| 9 #include <map> | 8 #include <map> |
| 9 #include <string> |
| 10 #include <vector> |
| 10 | 11 |
| 11 #include "base/callback.h" | 12 #include "base/callback.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 14 #include "chrome/browser/media_galleries/media_galleries_preferences.h" | 15 #include "chrome/browser/media_galleries/media_galleries_preferences.h" |
| 15 #include "components/storage_monitor/removable_storage_observer.h" | 16 #include "components/storage_monitor/removable_storage_observer.h" |
| 16 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
| 17 #include "ui/shell_dialogs/select_file_dialog.h" | 18 #include "ui/shell_dialogs/select_file_dialog.h" |
| 18 | 19 |
| 19 namespace content { | 20 namespace content { |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 | 256 |
| 256 scoped_ptr<MediaGalleryContextMenu> context_menu_; | 257 scoped_ptr<MediaGalleryContextMenu> context_menu_; |
| 257 | 258 |
| 258 // Creates the dialog. Only changed for unit tests. | 259 // Creates the dialog. Only changed for unit tests. |
| 259 CreateDialogCallback create_dialog_callback_; | 260 CreateDialogCallback create_dialog_callback_; |
| 260 | 261 |
| 261 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesDialogController); | 262 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesDialogController); |
| 262 }; | 263 }; |
| 263 | 264 |
| 264 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ | 265 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ |
| OLD | NEW |