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

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

Issue 10824204: Move small c/b/extensions classes into extensions namespace no.2 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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
Index: chrome/browser/extensions/extension_service_unittest.cc
diff --git a/chrome/browser/extensions/extension_service_unittest.cc b/chrome/browser/extensions/extension_service_unittest.cc
index e06cdfa242f84bd241096ec352e9193e64eb2eb3..c07d02597a8357de255f6f1119823ae741ab0848 100644
--- a/chrome/browser/extensions/extension_service_unittest.cc
+++ b/chrome/browser/extensions/extension_service_unittest.cc
@@ -976,7 +976,7 @@ class ExtensionServiceTest
// Receives notifications from a PackExtensionJob, indicating either that
// packing succeeded or that there was some error.
-class PackExtensionTestClient : public PackExtensionJob::Client {
+class PackExtensionTestClient : public extensions::PackExtensionJob::Client {
public:
PackExtensionTestClient(const FilePath& expected_crx_path,
const FilePath& expected_private_key_path);
@@ -1747,9 +1747,9 @@ TEST_F(ExtensionServiceTest, PackPunctuatedExtension) {
temp_dir.path().Append(expected_private_key_names[i]);
PackExtensionTestClient pack_client(expected_crx_path,
expected_private_key_path);
- scoped_refptr<PackExtensionJob> packer(
- new PackExtensionJob(&pack_client, output_dir, FilePath(),
- ExtensionCreator::kOverwriteCRX));
+ scoped_refptr<extensions::PackExtensionJob> packer(
+ new extensions::PackExtensionJob(&pack_client, output_dir, FilePath(),
+ ExtensionCreator::kOverwriteCRX));
packer->Start();
// The packer will post a notification task to the current thread's message

Powered by Google App Engine
This is Rietveld 408576698