| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/printing/cloud_print/privet_notifications.h" | 5 #include "chrome/browser/printing/cloud_print/privet_notifications.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/thread_task_runner_handle.h" | 9 #include "base/threading/thread_task_runner_handle.h" |
| 10 #include "chrome/browser/printing/cloud_print/privet_http_asynchronous_factory.h
" | 10 #include "chrome/browser/printing/cloud_print/privet_http_asynchronous_factory.h
" |
| 11 #include "chrome/browser/printing/cloud_print/privet_http_impl.h" | 11 #include "chrome/browser/printing/cloud_print/privet_http_impl.h" |
| 12 #include "net/url_request/test_url_fetcher_factory.h" | 12 #include "net/url_request/test_url_fetcher_factory.h" |
| 13 #include "net/url_request/url_request_test_util.h" | 13 #include "net/url_request/url_request_test_util.h" |
| 14 #include "testing/gmock/include/gmock/gmock.h" | 14 #include "testing/gmock/include/gmock/gmock.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 using testing::StrictMock; | 17 using testing::StrictMock; |
| 18 | 18 |
| 19 using ::testing::_; | 19 using ::testing::_; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 true, | 211 true, |
| 212 kExampleDeviceName, | 212 kExampleDeviceName, |
| 213 description_); | 213 description_); |
| 214 | 214 |
| 215 SuccessfulResponseToInfo(kInfoResponseNoUptime); | 215 SuccessfulResponseToInfo(kInfoResponseNoUptime); |
| 216 } | 216 } |
| 217 | 217 |
| 218 } // namespace | 218 } // namespace |
| 219 | 219 |
| 220 } // namespace cloud_print | 220 } // namespace cloud_print |
| OLD | NEW |