| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_MANAGED_MODE_PERMISSION_REQUEST_CREATOR_APIARY_H_ | 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_PERMISSION_REQUEST_CREATOR_APIARY_H_ |
| 6 #define CHROME_BROWSER_MANAGED_MODE_PERMISSION_REQUEST_CREATOR_APIARY_H_ | 6 #define CHROME_BROWSER_SUPERVISED_USER_PERMISSION_REQUEST_CREATOR_APIARY_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/managed_mode/permission_request_creator.h" | 8 #include "chrome/browser/supervised_user/permission_request_creator.h" |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "google_apis/gaia/oauth2_token_service.h" | 11 #include "google_apis/gaia/oauth2_token_service.h" |
| 12 #include "net/url_request/url_fetcher_delegate.h" | 12 #include "net/url_request/url_fetcher_delegate.h" |
| 13 | 13 |
| 14 class ManagedUserSigninManagerWrapper; | 14 class ManagedUserSigninManagerWrapper; |
| 15 class Profile; | 15 class Profile; |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class Time; | 18 class Time; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 scoped_ptr<ManagedUserSigninManagerWrapper> signin_wrapper_; | 62 scoped_ptr<ManagedUserSigninManagerWrapper> signin_wrapper_; |
| 63 base::Closure callback_; | 63 base::Closure callback_; |
| 64 net::URLRequestContextGetter* context_; | 64 net::URLRequestContextGetter* context_; |
| 65 std::string url_requested_; | 65 std::string url_requested_; |
| 66 scoped_ptr<OAuth2TokenService::Request> access_token_request_; | 66 scoped_ptr<OAuth2TokenService::Request> access_token_request_; |
| 67 std::string access_token_; | 67 std::string access_token_; |
| 68 bool access_token_expired_; | 68 bool access_token_expired_; |
| 69 scoped_ptr<net::URLFetcher> url_fetcher_; | 69 scoped_ptr<net::URLFetcher> url_fetcher_; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 #endif // CHROME_BROWSER_MANAGED_MODE_PERMISSION_REQUEST_CREATOR_APIARY_H_ | 72 #endif // CHROME_BROWSER_SUPERVISED_USER_PERMISSION_REQUEST_CREATOR_APIARY_H_ |
| OLD | NEW |