Chromium Code Reviews| 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_UTILITY_PROFILE_IMPORT_HANDLER_H_ | 5 #ifndef CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ |
| 6 #define CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ | 6 #define CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/single_thread_task_runner.h" | |
|
Lei Zhang
2015/04/28 05:24:56
both of these are not needed in the .h file?
Pranay
2015/05/04 03:32:25
Done.
| |
| 13 #include "base/thread_task_runner_handle.h" | |
| 12 #include "chrome/utility/utility_message_handler.h" | 14 #include "chrome/utility/utility_message_handler.h" |
| 13 | 15 |
| 14 class ExternalProcessImporterBridge; | 16 class ExternalProcessImporterBridge; |
| 15 class Importer; | 17 class Importer; |
| 16 | 18 |
| 17 namespace base { | 19 namespace base { |
| 18 class DictionaryValue; | 20 class DictionaryValue; |
| 19 class Thread; | 21 class Thread; |
| 20 } | 22 } |
| 21 | 23 |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 52 scoped_refptr<ExternalProcessImporterBridge> bridge_; | 54 scoped_refptr<ExternalProcessImporterBridge> bridge_; |
| 53 | 55 |
| 54 // A bitmask of importer::ImportItem. | 56 // A bitmask of importer::ImportItem. |
| 55 uint16 items_to_import_; | 57 uint16 items_to_import_; |
| 56 | 58 |
| 57 // Importer of the appropriate type (Firefox, Safari, IE, etc.) | 59 // Importer of the appropriate type (Firefox, Safari, IE, etc.) |
| 58 scoped_refptr<Importer> importer_; | 60 scoped_refptr<Importer> importer_; |
| 59 }; | 61 }; |
| 60 | 62 |
| 61 #endif // CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ | 63 #endif // CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ |
| OLD | NEW |