Index: chrome/browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc |
diff --git a/chrome/browser/local_discovery/privet_confirm_api_flow_unittest.cc b/chrome/browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc |
similarity index 88% |
rename from chrome/browser/local_discovery/privet_confirm_api_flow_unittest.cc |
rename to chrome/browser/printing/cloud_print/privet_confirm_api_flow_unittest.cc |
index 40f766ce1486b5c64e23fc8e1515f352bc679a0d..4877c2c87a3108b0b14ea2103a163e167ac642b0 100644 |
--- a/chrome/browser/local_discovery/privet_confirm_api_flow_unittest.cc |
+++ b/chrome/browser/printing/cloud_print/privet_confirm_api_flow_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_confirm_api_flow.h" |
+#include "chrome/browser/printing/cloud_print/privet_confirm_api_flow.h" |
#include <set> |
@@ -13,7 +13,7 @@ |
using testing::StrictMock; |
using testing::_; |
-namespace local_discovery { |
+namespace cloud_print { |
namespace { |
@@ -51,15 +51,15 @@ TEST(PrivetConfirmApiFlowTest, Parsing) { |
base::JSONReader::Read(kSampleConfirmResponse); |
const base::DictionaryValue* dictionary = NULL; |
ASSERT_TRUE(value->GetAsDictionary(&dictionary)); |
- confirmation.OnGCDAPIFlowComplete(*dictionary); |
+ confirmation.OnGCDApiFlowComplete(*dictionary); |
EXPECT_CALL(delegate, Callback(GCDApiFlow::ERROR_FROM_SERVER)).Times(1); |
value = base::JSONReader::Read(kFailedConfirmResponse); |
ASSERT_TRUE(value->GetAsDictionary(&dictionary)); |
- confirmation.OnGCDAPIFlowComplete(*dictionary); |
+ confirmation.OnGCDApiFlowComplete(*dictionary); |
} |
} // namespace |
-} // namespace local_discovery |
+} // namespace cloud_print |