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

Side by Side Diff: chrome/browser/extensions/pack_extension_job.h

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_H_
6 #define CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_H_ 6 #define CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 private: 50 private:
51 friend class base::RefCountedThreadSafe<PackExtensionJob>; 51 friend class base::RefCountedThreadSafe<PackExtensionJob>;
52 52
53 virtual ~PackExtensionJob(); 53 virtual ~PackExtensionJob();
54 54
55 // If |asynchronous_| is false, this is run on whichever thread calls it. 55 // If |asynchronous_| is false, this is run on whichever thread calls it.
56 void Run(); 56 void Run();
57 void ReportSuccessOnClientThread(); 57 void ReportSuccessOnClientThread();
58 void ReportFailureOnClientThread(const std::string& error); 58 void ReportFailureOnClientThread(const std::string& error);
59 59
60 BrowserThread::ID client_thread_id_; 60 content::BrowserThread::ID client_thread_id_;
61 Client* client_; 61 Client* client_;
62 FilePath root_directory_; 62 FilePath root_directory_;
63 FilePath key_file_; 63 FilePath key_file_;
64 FilePath crx_file_out_; 64 FilePath crx_file_out_;
65 FilePath key_file_out_; 65 FilePath key_file_out_;
66 bool asynchronous_; 66 bool asynchronous_;
67 67
68 DISALLOW_COPY_AND_ASSIGN(PackExtensionJob); 68 DISALLOW_COPY_AND_ASSIGN(PackExtensionJob);
69 }; 69 };
70 70
71 #endif // CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_H_ 71 #endif // CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/network_delay_listener.cc ('k') | chrome/browser/extensions/pack_extension_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698