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

Side by Side Diff: storage/browser/blob/blob_async_builder_host_unittest.cc

Issue 2368913003: Populate storage_unittests target. (Closed)
Patch Set: Removed unnecessary include from storage/browser/blob/blob_storage_context_unittest.cc. Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "storage/browser/blob/blob_async_builder_host.h" 5 #include "storage/browser/blob/blob_async_builder_host.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string.h> 9 #include <string.h>
10 10
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 &context_); 608 &context_);
609 EXPECT_EQ(BlobTransportResult::CANCEL_REFERENCED_BLOB_BROKEN, 609 EXPECT_EQ(BlobTransportResult::CANCEL_REFERENCED_BLOB_BROKEN,
610 host_.RegisterBlobUUID(kBlob2, kContentType, kContentDisposition, 610 host_.RegisterBlobUUID(kBlob2, kContentType, kContentDisposition,
611 {kBlob1}, &context_)); 611 {kBlob1}, &context_));
612 EXPECT_FALSE(host_.IsBeingBuilt(kBlob2)); 612 EXPECT_FALSE(host_.IsBeingBuilt(kBlob2));
613 EXPECT_FALSE(IsBeingBuiltInContext(kBlob2)); 613 EXPECT_FALSE(IsBeingBuiltInContext(kBlob2));
614 EXPECT_TRUE(context_.GetBlobDataFromUUID(kBlob2)->IsBroken()); 614 EXPECT_TRUE(context_.GetBlobDataFromUUID(kBlob2)->IsBroken());
615 }; 615 };
616 616
617 } // namespace storage 617 } // namespace storage
OLDNEW
« no previous file with comments | « storage/browser/BUILD.gn ('k') | storage/browser/blob/blob_async_transport_request_builder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698