Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: chrome/browser/media_galleries/media_galleries_dialog_controller.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698