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

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

Issue 638863002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/utility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « chrome/utility/printing_handler.cc ('k') | chrome/utility/shell_handler_win.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) 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"
(...skipping 12 matching lines...) Expand all
23 struct SourceProfile; 23 struct SourceProfile;
24 } 24 }
25 25
26 // Dispatches IPCs for out of process profile import. 26 // Dispatches IPCs for out of process profile import.
27 class ProfileImportHandler : public UtilityMessageHandler { 27 class ProfileImportHandler : public UtilityMessageHandler {
28 public: 28 public:
29 ProfileImportHandler(); 29 ProfileImportHandler();
30 virtual ~ProfileImportHandler(); 30 virtual ~ProfileImportHandler();
31 31
32 // IPC::Listener: 32 // IPC::Listener:
33 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 33 virtual bool OnMessageReceived(const IPC::Message& message) override;
34 34
35 private: 35 private:
36 void OnImportStart( 36 void OnImportStart(
37 const importer::SourceProfile& source_profile, 37 const importer::SourceProfile& source_profile,
38 uint16 items, 38 uint16 items,
39 const base::DictionaryValue& localized_strings); 39 const base::DictionaryValue& localized_strings);
40 void OnImportCancel(); 40 void OnImportCancel();
41 void OnImportItemFinished(uint16 item); 41 void OnImportItemFinished(uint16 item);
42 42
43 // The following are used with out of process profile import: 43 // The following are used with out of process profile import:
44 void ImporterCleanup(); 44 void ImporterCleanup();
45 45
46 // Thread that importer runs on, while ProfileImportThread handles messages 46 // Thread that importer runs on, while ProfileImportThread handles messages
47 // from the browser process. 47 // from the browser process.
48 scoped_ptr<base::Thread> import_thread_; 48 scoped_ptr<base::Thread> import_thread_;
49 49
50 // Bridge object is passed to importer, so that it can send IPC calls 50 // Bridge object is passed to importer, so that it can send IPC calls
51 // directly back to the ProfileImportProcessHost. 51 // directly back to the ProfileImportProcessHost.
52 scoped_refptr<ExternalProcessImporterBridge> bridge_; 52 scoped_refptr<ExternalProcessImporterBridge> bridge_;
53 53
54 // A bitmask of importer::ImportItem. 54 // A bitmask of importer::ImportItem.
55 uint16 items_to_import_; 55 uint16 items_to_import_;
56 56
57 // Importer of the appropriate type (Firefox, Safari, IE, etc.) 57 // Importer of the appropriate type (Firefox, Safari, IE, etc.)
58 scoped_refptr<Importer> importer_; 58 scoped_refptr<Importer> importer_;
59 }; 59 };
60 60
61 #endif // CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_ 61 #endif // CHROME_UTILITY_PROFILE_IMPORT_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/utility/printing_handler.cc ('k') | chrome/utility/shell_handler_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698