diff options
author | rafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-07 04:43:45 +0000 |
---|---|---|
committer | rafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-07 04:43:45 +0000 |
commit | 5cbb809a7203d91c05021aae74e16fdcefff9352 (patch) | |
tree | 0627479ed7960568638b118d8e01c0aac41d5a25 /chrome/browser/extensions/pack_extension_job.h | |
parent | b00e86cf9afb44beb3f8fd51e85318505cabaa89 (diff) | |
download | chromium_src-5cbb809a7203d91c05021aae74e16fdcefff9352.zip chromium_src-5cbb809a7203d91c05021aae74e16fdcefff9352.tar.gz chromium_src-5cbb809a7203d91c05021aae74e16fdcefff9352.tar.bz2 |
This reverts: HTML Pack Extension Dialog / Linux & Mac Packaging Support.
original issue: http://codereview.chromium.org/207062/
TBR=sky
Review URL: http://codereview.chromium.org/270001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28234 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/pack_extension_job.h')
-rw-r--r-- | chrome/browser/extensions/pack_extension_job.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/chrome/browser/extensions/pack_extension_job.h b/chrome/browser/extensions/pack_extension_job.h index 8c3cf26..ec00f21 100644 --- a/chrome/browser/extensions/pack_extension_job.h +++ b/chrome/browser/extensions/pack_extension_job.h @@ -2,9 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_UI_H_ -#define CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_UI_H_ - #include <string> #include "base/file_path.h" @@ -14,7 +11,7 @@ class MessageLoop; // Manages packing an extension on the file thread and reporting the result // back to the UI. -class PackExtensionJob : public base::RefCountedThreadSafe<PackExtensionJob> { +class PackExtensionJob : public base::RefCounted<PackExtensionJob> { public: // Interface for people who want to use PackExtensionJob to implement. @@ -49,6 +46,3 @@ class PackExtensionJob : public base::RefCountedThreadSafe<PackExtensionJob> { DISALLOW_COPY_AND_ASSIGN(PackExtensionJob); }; - -#endif // CHROME_BROWSER_EXTENSIONS_PACK_EXTENSION_JOB_UI_H_ - |