| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_PUBLIC_COMMON_URL_FETCHER_DELEGATE_H_ | |
| 6 #define CONTENT_PUBLIC_COMMON_URL_FETCHER_DELEGATE_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 // TODO(akalin): Remove this file once rlz is updated to use | |
| 10 // net::URLFetcherDelegate. | |
| 11 | |
| 12 #ifndef RLZ_LIB_FINANCIAL_PING_H_ | |
| 13 #error Only rlz/lib/financial_ping.h should include this file | |
| 14 #endif | |
| 15 | |
| 16 #include "net/url_request/url_fetcher_delegate.h" | |
| 17 | |
| 18 namespace content { | |
| 19 | |
| 20 typedef net::URLFetcherDelegate URLFetcherDelegate; | |
| 21 | |
| 22 } // namespace content | |
| 23 | |
| 24 #endif // CONTENT_PUBLIC_COMMON_URL_FETCHER_DELEGATE_H_ | |
| OLD | NEW |