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

Side by Side Diff: net/http/mock_http_cache.cc

Issue 542733002: Remove void** from disk_cache interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: narrower Created 6 years, 3 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "net/http/mock_http_cache.h" 5 #include "net/http/mock_http_cache.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "net/base/completion_callback.h" 9 #include "net/base/completion_callback.h"
10 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 const base::Time end_time, 450 const base::Time end_time,
451 const net::CompletionCallback& callback) { 451 const net::CompletionCallback& callback) {
452 return net::ERR_NOT_IMPLEMENTED; 452 return net::ERR_NOT_IMPLEMENTED;
453 } 453 }
454 454
455 int MockDiskCache::DoomEntriesSince(const base::Time initial_time, 455 int MockDiskCache::DoomEntriesSince(const base::Time initial_time,
456 const net::CompletionCallback& callback) { 456 const net::CompletionCallback& callback) {
457 return net::ERR_NOT_IMPLEMENTED; 457 return net::ERR_NOT_IMPLEMENTED;
458 } 458 }
459 459
460 int MockDiskCache::OpenNextEntry(void** iter, disk_cache::Entry** next_entry, 460 scoped_ptr<disk_cache::Backend::Iterator> MockDiskCache::CreateIterator() {
461 const net::CompletionCallback& callback) { 461 class NotImplementedIterator FINAL : public Iterator {
rvargas (doing something else) 2014/09/18 02:32:12 declare outside the method
gavinp 2014/09/18 18:13:04 Done.
462 return net::ERR_NOT_IMPLEMENTED; 462 public:
463 } 463 virtual int OpenNextEntry(
464 464 disk_cache::Entry** next_entry,
465 void MockDiskCache::EndEnumeration(void** iter) { 465 const net::CompletionCallback& callback) OVERRIDE {
466 return net::ERR_NOT_IMPLEMENTED;
467 }
468 };
469 return scoped_ptr<Iterator>(new NotImplementedIterator());
466 } 470 }
467 471
468 void MockDiskCache::GetStats( 472 void MockDiskCache::GetStats(
469 std::vector<std::pair<std::string, std::string> >* stats) { 473 std::vector<std::pair<std::string, std::string> >* stats) {
470 } 474 }
471 475
472 void MockDiskCache::OnExternalCacheHit(const std::string& key) { 476 void MockDiskCache::OnExternalCacheHit(const std::string& key) {
473 } 477 }
474 478
475 void MockDiskCache::ReleaseAll() { 479 void MockDiskCache::ReleaseAll() {
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 void MockBlockingBackendFactory::FinishCreation() { 630 void MockBlockingBackendFactory::FinishCreation() {
627 block_ = false; 631 block_ = false;
628 if (!callback_.is_null()) { 632 if (!callback_.is_null()) {
629 if (!fail_) 633 if (!fail_)
630 backend_->reset(new MockDiskCache()); 634 backend_->reset(new MockDiskCache());
631 net::CompletionCallback cb = callback_; 635 net::CompletionCallback cb = callback_;
632 callback_.Reset(); 636 callback_.Reset();
633 cb.Run(Result()); // This object can be deleted here. 637 cb.Run(Result()); // This object can be deleted here.
634 } 638 }
635 } 639 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698