OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_SERVICE_CLOUD_PRINT_CLOUD_PRINT_WIPEOUT_H_ | 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_WIPEOUT_H_ |
6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_WIPEOUT_H_ | 6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_WIPEOUT_H_ |
7 #pragma once | |
8 | 7 |
9 #include <list> | 8 #include <list> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
13 #include "chrome/service/cloud_print/cloud_print_url_fetcher.h" | 12 #include "chrome/service/cloud_print/cloud_print_url_fetcher.h" |
14 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
15 | 14 |
16 // CloudPrintWipeout unregisters list of printers from the cloudprint service. | 15 // CloudPrintWipeout unregisters list of printers from the cloudprint service. |
17 class CloudPrintWipeout : public CloudPrintURLFetcherDelegate { | 16 class CloudPrintWipeout : public CloudPrintURLFetcherDelegate { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 // Auth token. | 50 // Auth token. |
52 std::string auth_token_; | 51 std::string auth_token_; |
53 // List of printer to unregister | 52 // List of printer to unregister |
54 std::list<std::string> printer_ids_; | 53 std::list<std::string> printer_ids_; |
55 | 54 |
56 DISALLOW_COPY_AND_ASSIGN(CloudPrintWipeout); | 55 DISALLOW_COPY_AND_ASSIGN(CloudPrintWipeout); |
57 }; | 56 }; |
58 | 57 |
59 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_WIPEOUT_H_ | 58 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_WIPEOUT_H_ |
60 | 59 |
OLD | NEW |