http_fetcher.cc 739 B

1234567891011121314151617181920212223242526
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "ash/quick_pair/repository/http_fetcher.h"
  5. namespace ash {
  6. namespace quick_pair {
  7. HttpFetcher::HttpFetcher() = default;
  8. HttpFetcher::~HttpFetcher() = default;
  9. void HttpFetcher::ExecutePostRequest(const GURL& url,
  10. const std::string& body,
  11. FetchCompleteCallback callback) {
  12. NOTREACHED();
  13. }
  14. void HttpFetcher::ExecuteDeleteRequest(const GURL& url,
  15. FetchCompleteCallback callback) {
  16. NOTREACHED();
  17. }
  18. } // namespace quick_pair
  19. } // namespace ash