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

Unified Diff: chrome/browser/extensions/api/image_writer_private/operation_manager_unittest.cc

Issue 92873003: Adds asynchronous unzip functions to ZipReader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Uses the correct target for directory test. Created 6 years, 11 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/api/image_writer_private/operation_manager_unittest.cc
diff --git a/chrome/browser/extensions/api/image_writer_private/operation_manager_unittest.cc b/chrome/browser/extensions/api/image_writer_private/operation_manager_unittest.cc
index 73c8e660cf14e86170c1b3ccb32d35070c2307d6..0d6ba8476e1d055bef5b62ff50c04b22cd9dd6bd 100644
--- a/chrome/browser/extensions/api/image_writer_private/operation_manager_unittest.cc
+++ b/chrome/browser/extensions/api/image_writer_private/operation_manager_unittest.cc
@@ -21,13 +21,6 @@
namespace extensions {
namespace image_writer {
-using testing::_;
-using testing::Lt;
-using testing::AnyNumber;
-using testing::AtLeast;
-
-namespace {
-
// A fake for the EventRouter. If tests require monitoring of interaction with
// the event router put the logic here.
class FakeEventRouter : public extensions::EventRouter {
@@ -63,6 +56,8 @@ BrowserContextKeyedService* BuildFakeExtensionSystem(
return new FakeExtensionSystem(static_cast<Profile*>(profile));
}
+namespace {
+
class ImageWriterOperationManagerTest
: public ImageWriterUnitTestBase {
public:
@@ -75,7 +70,8 @@ class ImageWriterOperationManagerTest
protected:
ImageWriterOperationManagerTest()
: started_(false),
- start_success_(false) {}
+ start_success_(false) {
+ }
virtual void SetUp() OVERRIDE {
ImageWriterUnitTestBase::SetUp();

Powered by Google App Engine
This is Rietveld 408576698