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

Side by Side Diff: app/os_exchange_data.h

Issue 3173020: FBTF: Remove unneeded #includes of <string> and <vector> from src/app and src/base. (Closed)
Patch Set: argh Created 10 years, 4 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
« no previous file with comments | « app/gtk_util.h ('k') | app/os_exchange_data_provider_gtk.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 APP_OS_EXCHANGE_DATA_H_ 5 #ifndef APP_OS_EXCHANGE_DATA_H_
6 #define APP_OS_EXCHANGE_DATA_H_ 6 #define APP_OS_EXCHANGE_DATA_H_
7 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector>
14 13
15 #if defined(OS_WIN) 14 #if defined(OS_WIN)
16 #include <objidl.h> 15 #include <objidl.h>
17 #elif !defined(OS_MACOSX) 16 #elif !defined(OS_MACOSX)
18 #include <gtk/gtk.h> 17 #include <gtk/gtk.h>
19 #endif 18 #endif
20 19
21 #include "app/download_file_interface.h" 20 #include "app/download_file_interface.h"
22 #include "base/basictypes.h" 21 #include "base/basictypes.h"
23 #include "base/file_path.h" 22 #include "base/file_path.h"
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 // Creates the platform specific Provider. 186 // Creates the platform specific Provider.
188 static Provider* CreateProvider(); 187 static Provider* CreateProvider();
189 188
190 // Provides the actual data. 189 // Provides the actual data.
191 scoped_ptr<Provider> provider_; 190 scoped_ptr<Provider> provider_;
192 191
193 DISALLOW_COPY_AND_ASSIGN(OSExchangeData); 192 DISALLOW_COPY_AND_ASSIGN(OSExchangeData);
194 }; 193 };
195 194
196 #endif // APP_OS_EXCHANGE_DATA_H_ 195 #endif // APP_OS_EXCHANGE_DATA_H_
OLDNEW
« no previous file with comments | « app/gtk_util.h ('k') | app/os_exchange_data_provider_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698