| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |