Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: components/offline_pages/core/request_header/offline_page_header_unittest.cc

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/offline_pages/core/request_header/offline_page_header_unittest.cc
diff --git a/components/offline_pages/request_header/offline_page_header_unittest.cc b/components/offline_pages/core/request_header/offline_page_header_unittest.cc
similarity index 94%
rename from components/offline_pages/request_header/offline_page_header_unittest.cc
rename to components/offline_pages/core/request_header/offline_page_header_unittest.cc
index 744a66f66f5a6d0a3a30ba68bfb64fe55c3821d0..636c3bdbe9677f048359de8412fa97cb2eef042f 100644
--- a/components/offline_pages/request_header/offline_page_header_unittest.cc
+++ b/components/offline_pages/core/request_header/offline_page_header_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 "components/offline_pages/request_header/offline_page_header.h"
+#include "components/offline_pages/core/request_header/offline_page_header.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -64,7 +64,7 @@ TEST_F(OfflinePageHeaderTest, Parse) {
EXPECT_EQ("a1b2", id);
EXPECT_TRUE(ParseFromHeaderValue("persist=1 reason=download id=a1b2",
- &need_to_persist, &reason, &id));
+ &need_to_persist, &reason, &id));
EXPECT_TRUE(need_to_persist);
EXPECT_EQ(OfflinePageHeader::Reason::DOWNLOAD, reason);
EXPECT_EQ("a1b2", id);

Powered by Google App Engine
This is Rietveld 408576698