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

Side by Side Diff: chrome/utility/profile_import_handler.h

Issue 1111673003: [chrome/utility] Replace MessageLoopProxy usage with ThreadTaskRunnerHandle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 (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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698