| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 BLIMP_CLIENT_CORE_SESSION_ASSIGNMENT_SOURCE_H_ | 5 #ifndef BLIMP_CLIENT_CORE_SESSION_ASSIGNMENT_SOURCE_H_ |
| 6 #define BLIMP_CLIENT_CORE_SESSION_ASSIGNMENT_SOURCE_H_ | 6 #define BLIMP_CLIENT_CORE_SESSION_ASSIGNMENT_SOURCE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "blimp/client/public/session/assignment.h" | 13 #include "blimp/client/public/session/assignment.h" |
| 14 #include "net/url_request/url_fetcher_delegate.h" | 14 #include "net/url_request/url_fetcher_delegate.h" |
| 15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class FilePath; | |
| 19 class SingleThreadTaskRunner; | 18 class SingleThreadTaskRunner; |
| 20 class Value; | 19 class Value; |
| 21 } | 20 } |
| 22 | 21 |
| 23 namespace net { | 22 namespace net { |
| 24 class URLFetcher; | 23 class URLFetcher; |
| 25 class URLRequestContextGetter; | 24 class URLRequestContextGetter; |
| 26 } | 25 } |
| 27 | 26 |
| 28 namespace blimp { | 27 namespace blimp { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 75 |
| 77 base::WeakPtrFactory<AssignmentSource> weak_factory_; | 76 base::WeakPtrFactory<AssignmentSource> weak_factory_; |
| 78 | 77 |
| 79 DISALLOW_COPY_AND_ASSIGN(AssignmentSource); | 78 DISALLOW_COPY_AND_ASSIGN(AssignmentSource); |
| 80 }; | 79 }; |
| 81 | 80 |
| 82 } // namespace client | 81 } // namespace client |
| 83 } // namespace blimp | 82 } // namespace blimp |
| 84 | 83 |
| 85 #endif // BLIMP_CLIENT_CORE_SESSION_ASSIGNMENT_SOURCE_H_ | 84 #endif // BLIMP_CLIENT_CORE_SESSION_ASSIGNMENT_SOURCE_H_ |
| OLD | NEW |