| Index: sync/test/accounts_client/url_request_context_getter.h
|
| diff --git a/sync/test/accounts_client/url_request_context_getter.h b/sync/test/accounts_client/url_request_context_getter.h
|
| deleted file mode 100644
|
| index 20a39310b722dfade2da57a6ec761aafcc1ef2ca..0000000000000000000000000000000000000000
|
| --- a/sync/test/accounts_client/url_request_context_getter.h
|
| +++ /dev/null
|
| @@ -1,43 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef SYNC_TEST_ACCOUNTS_CLIENT_URL_REQUEST_CONTEXT_GETTER_H_
|
| -#define SYNC_TEST_ACCOUNTS_CLIENT_URL_REQUEST_CONTEXT_GETTER_H_
|
| -
|
| -#include "base/basictypes.h"
|
| -#include "base/compiler_specific.h"
|
| -#include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| -#include "net/url_request/url_request_context_getter.h"
|
| -
|
| -namespace base {
|
| -class SingleThreadTaskRunner;
|
| -}
|
| -
|
| -namespace net {
|
| -class URLRequestContext;
|
| -}
|
| -
|
| -class URLRequestContextGetter : public net::URLRequestContextGetter {
|
| - public:
|
| - explicit URLRequestContextGetter(
|
| - scoped_refptr<base::SingleThreadTaskRunner> network_task_runner);
|
| -
|
| - // Overridden from net::URLRequestContextGetter:
|
| - net::URLRequestContext* GetURLRequestContext() override;
|
| - scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner()
|
| - const override;
|
| -
|
| - private:
|
| - ~URLRequestContextGetter() override;
|
| -
|
| - scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_;
|
| -
|
| - // Only accessed on the IO thread.
|
| - scoped_ptr<net::URLRequestContext> url_request_context_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter);
|
| -};
|
| -
|
| -#endif // SYNC_TEST_ACCOUNTS_CLIENT_URL_REQUEST_CONTEXT_GETTER_H_
|
|
|