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

Unified Diff: chrome/browser/extensions/sandboxed_unpacker_unittest.cc

Issue 10704060: Move ExtensionUnpacker into extensions:: namespace, rename it to Unpacker (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Even later master Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/sandboxed_unpacker.cc ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/sandboxed_unpacker_unittest.cc
diff --git a/chrome/browser/extensions/sandboxed_unpacker_unittest.cc b/chrome/browser/extensions/sandboxed_unpacker_unittest.cc
index 01c396adcef25f14af9a0ac4b0d36e452d324752..3be80b28074191e34318cb1178b672fe096dea82 100644
--- a/chrome/browser/extensions/sandboxed_unpacker_unittest.cc
+++ b/chrome/browser/extensions/sandboxed_unpacker_unittest.cc
@@ -14,7 +14,7 @@
#include "chrome/common/chrome_paths.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_manifest_constants.h"
-#include "chrome/common/extensions/extension_unpacker.h"
+#include "chrome/common/extensions/unpacker.h"
#include "content/public/test/test_browser_thread.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -94,7 +94,7 @@ class SandboxedUnpackerTest : public testing::Test {
"Original path: " << original_path.value() <<
", Crx path: " << crx_path.value();
- unpacker_.reset(new ExtensionUnpacker(
+ unpacker_.reset(new Unpacker(
crx_path, std::string(), Extension::INTERNAL, Extension::NO_FLAGS));
// Build a temp area where the extension will be unpacked.
@@ -161,7 +161,7 @@ class SandboxedUnpackerTest : public testing::Test {
ScopedTempDir temp_dir_;
FilePath temp_path_;
MockSandboxedUnpackerClient* client_;
- scoped_ptr<ExtensionUnpacker> unpacker_;
+ scoped_ptr<Unpacker> unpacker_;
scoped_refptr<SandboxedUnpacker> sandboxed_unpacker_;
MessageLoop loop_;
scoped_ptr<content::TestBrowserThread> file_thread_;
« no previous file with comments | « chrome/browser/extensions/sandboxed_unpacker.cc ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698