OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_URL_FETCHERS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_URL_FETCHERS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_URL_FETCHERS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_URL_FETCHERS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "chrome/browser/chrome_thread.h" | 10 #include "chrome/browser/chrome_thread.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 virtual ~GotCanceledFetcher(); | 45 virtual ~GotCanceledFetcher(); |
46 | 46 |
47 void Start(); | 47 void Start(); |
48 | 48 |
49 private: | 49 private: |
50 GURL url_; | 50 GURL url_; |
51 | 51 |
52 DISALLOW_COPY_AND_ASSIGN(GotCanceledFetcher); | 52 DISALLOW_COPY_AND_ASSIGN(GotCanceledFetcher); |
53 }; | 53 }; |
54 | 54 |
| 55 class SuccessFetcher : public URLFetcher { |
| 56 public: |
| 57 SuccessFetcher(bool success, |
| 58 const GURL& url, |
| 59 const std::string& results, |
| 60 URLFetcher::RequestType request_type, |
| 61 URLFetcher::Delegate* d); |
| 62 virtual ~SuccessFetcher(); |
| 63 |
| 64 void Start(); |
| 65 |
| 66 private: |
| 67 GURL url_; |
| 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(SuccessFetcher); |
| 70 }; |
| 71 |
| 72 class FailFetcher : public URLFetcher { |
| 73 public: |
| 74 FailFetcher(bool success, |
| 75 const GURL& url, |
| 76 const std::string& results, |
| 77 URLFetcher::RequestType request_type, |
| 78 URLFetcher::Delegate* d); |
| 79 virtual ~FailFetcher(); |
| 80 |
| 81 void Start(); |
| 82 |
| 83 private: |
| 84 GURL url_; |
| 85 |
| 86 DISALLOW_COPY_AND_ASSIGN(FailFetcher); |
| 87 }; |
| 88 |
55 } // namespace chromeos | 89 } // namespace chromeos |
56 | 90 |
57 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_URL_FETCHERS_H_ | 91 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MOCK_URL_FETCHERS_H_ |
OLD | NEW |