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/thread_task_runner_handle.h" | |
|
Lei Zhang
2015/04/28 05:47:24
Also not needed in the header file?
Pranay
2015/05/04 03:32:25
Done.
| |
| 12 #include "chrome/utility/utility_message_handler.h" | 13 #include "chrome/utility/utility_message_handler.h" |
| 13 | 14 |
| 14 class ExternalProcessImporterBridge; | 15 class ExternalProcessImporterBridge; |
| 15 class Importer; | 16 class Importer; |
| 16 | 17 |
| 17 namespace base { | 18 namespace base { |
| 18 class DictionaryValue; | 19 class DictionaryValue; |
| 19 class Thread; | 20 class Thread; |
| 20 } | 21 } |
| 21 | 22 |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 52 scoped_refptr<ExternalProcessImporterBridge> bridge_; | 53 scoped_refptr<ExternalProcessImporterBridge> bridge_; |
| 53 | 54 |
| 54 // A bitmask of importer::ImportItem. | 55 // A bitmask of importer::ImportItem. |
| 55 uint16 items_to_import_; | 56 uint16 items_to_import_; |
| 56 | 57 |
| 57 // Importer of the appropriate type (Firefox, Safari, IE, etc.) | 58 // Importer of the appropriate type (Firefox, Safari, IE, etc.) |
| 58 scoped_refptr<Importer> importer_; | 59 scoped_refptr<Importer> importer_; |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 #endif // CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ | 62 #endif // CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ |
| OLD | NEW |