| 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_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 <stddef.h> |
| 9 |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 12 #include "base/macros.h" |
| 10 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 11 #include "chrome/browser/media_galleries/media_galleries_preferences.h" | 14 #include "chrome/browser/media_galleries/media_galleries_preferences.h" |
| 12 | 15 |
| 13 namespace content { | 16 namespace content { |
| 14 class WebContents; | 17 class WebContents; |
| 15 } | 18 } |
| 16 | 19 |
| 17 namespace ui { | 20 namespace ui { |
| 18 class MenuModel; | 21 class MenuModel; |
| 19 } | 22 } |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 virtual content::WebContents* WebContents() = 0; | 104 virtual content::WebContents* WebContents() = 0; |
| 102 | 105 |
| 103 protected: | 106 protected: |
| 104 MediaGalleriesDialogController(); | 107 MediaGalleriesDialogController(); |
| 105 virtual ~MediaGalleriesDialogController(); | 108 virtual ~MediaGalleriesDialogController(); |
| 106 | 109 |
| 107 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesDialogController); | 110 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesDialogController); |
| 108 }; | 111 }; |
| 109 | 112 |
| 110 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ | 113 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MEDIA_GALLERIES_DIALOG_CONTROLLER_H_ |
| OLD | NEW |