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

Side by Side Diff: content/browser/appcache/appcache_manifest_parser_unittest.cc

Issue 469413003: Rename appcache/manifest_parser* to appcache/appcache_manifest_parser*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update third_party_files_whitelist.txt Created 6 years, 4 months 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <string> 5 #include <string>
6 6
7 #include "content/browser/appcache/manifest_parser.h" 7 #include "content/browser/appcache/appcache_manifest_parser.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "url/gurl.h" 9 #include "url/gurl.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 class AppCacheManifestParserTest : public testing::Test { 13 class AppCacheManifestParserTest : public testing::Test {
14 }; 14 };
15 15
16 TEST(AppCacheManifestParserTest, NoData) { 16 TEST(AppCacheManifestParserTest, NoData) {
17 GURL url; 17 GURL url;
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 manifest.online_whitelist_namespaces[0].target_url); 507 manifest.online_whitelist_namespaces[0].target_url);
508 EXPECT_EQ( 508 EXPECT_EQ(
509 GURL("http://foo.com/network_pattern*"), 509 GURL("http://foo.com/network_pattern*"),
510 manifest.online_whitelist_namespaces[1].namespace_url); 510 manifest.online_whitelist_namespaces[1].namespace_url);
511 EXPECT_EQ( 511 EXPECT_EQ(
512 GURL(), 512 GURL(),
513 manifest.online_whitelist_namespaces[1].target_url); 513 manifest.online_whitelist_namespaces[1].target_url);
514 } 514 }
515 515
516 } // namespace content 516 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_manifest_parser.cc ('k') | content/browser/appcache/manifest_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698