| Index: chrome/browser/printing/cloud_print/privet_local_printer_lister_unittest.cc
|
| diff --git a/chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc b/chrome/browser/printing/cloud_print/privet_local_printer_lister_unittest.cc
|
| similarity index 97%
|
| rename from chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc
|
| rename to chrome/browser/printing/cloud_print/privet_local_printer_lister_unittest.cc
|
| index 700335f779ceaec3a40ea36250d2a07ae2ee59f0..58e5c3c169e940bd10cf054919c9f076a6e72475 100644
|
| --- a/chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc
|
| +++ b/chrome/browser/printing/cloud_print/privet_local_printer_lister_unittest.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/local_discovery/privet_local_printer_lister.h"
|
| +#include "chrome/browser/printing/cloud_print/privet_local_printer_lister.h"
|
|
|
| #include <stddef.h>
|
| #include <stdint.h>
|
| @@ -16,11 +16,13 @@
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| +using local_discovery::TestServiceDiscoveryClient;
|
| +
|
| using testing::StrictMock;
|
| using testing::AtLeast;
|
| using testing::_;
|
|
|
| -namespace local_discovery {
|
| +namespace cloud_print {
|
|
|
| namespace {
|
|
|
| @@ -172,7 +174,7 @@ TEST_F(PrivetLocalPrinterListerTest, PrinterAddedTest) {
|
| EXPECT_TRUE(SuccessfulResponseToURL(
|
| GURL(kPrivetInfoURL),
|
| std::string(kInfoIsLocalPrinter)));
|
| -};
|
| +}
|
|
|
| TEST_F(PrivetLocalPrinterListerTest, NonPrinterAddedTest) {
|
| ExpectAnyPacket();
|
| @@ -186,8 +188,8 @@ TEST_F(PrivetLocalPrinterListerTest, NonPrinterAddedTest) {
|
| EXPECT_TRUE(SuccessfulResponseToURL(
|
| GURL(kPrivetInfoURL),
|
| std::string(kInfoIsNotLocalPrinter)));
|
| -};
|
| +}
|
|
|
| } // namespace
|
|
|
| -} // namespace local_discovery
|
| +} // namespace cloud_print
|
|
|