Skip to content

Commit

Permalink
Rename appcache/manifest_parser* to appcache/appcache_manifest_parser*.
Browse files Browse the repository at this point in the history
The manifest_parser.{h,cc} files are colliding with new files I'm
creating for the Web Manifest feature. Appcache manifest files should
be prefixed by "appcache".

BUG=None
NOTRY=true
TBR=torne (for third_party_files_whitelist.txt)

Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=291388

Review URL: https://codereview.chromium.org/469413003

Cr-Commit-Position: refs/heads/master@{#291393}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291393 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
mlamouri@chromium.org committed Aug 22, 2014
1 parent 0d775c7 commit e4ca79d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions android_webview/tools/third_party_files_whitelist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ ui/gfx/codec/png_codec.cc
# Copyright The Chromium Authors and Apple Inc; BSD license. This third-party
# code is taken from WebKit, the license for which we already pick up from
# webkit/.
content/browser/appcache/manifest_parser.cc
content/browser/appcache/appcache_manifest_parser.cc
# Copyright The Chromium Authors and Apple Inc; BSD license. This third-party
# code is taken from WebKit, the license for which we already pick up from
# webkit/.
content/browser/appcache/manifest_parser.h
content/browser/appcache/appcache_manifest_parser.h
# Copyright The Chromium Authors and Netscape Communications Corporation; BSD
# and (MPL, GPL v2 or LGPL v2) licenses. This third-party code is taken from
# Mozilla, the license for which we already pick up from third_party/npapi/.
Expand Down
2 changes: 1 addition & 1 deletion content/browser/appcache/appcache.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "base/time/time.h"
#include "content/browser/appcache/appcache_database.h"
#include "content/browser/appcache/appcache_entry.h"
#include "content/browser/appcache/manifest_parser.h"
#include "content/browser/appcache/appcache_manifest_parser.h"
#include "content/common/content_export.h"
#include "url/gurl.h"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
Expand Down Expand Up @@ -29,7 +29,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "content/browser/appcache/manifest_parser.h"
#include "content/browser/appcache/appcache_manifest_parser.h"

#include "base/command_line.h"
#include "base/i18n/icu_string_conversions.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
Expand Down Expand Up @@ -29,8 +29,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_
#define CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_
#ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_MANIFEST_PARSER_H_
#define CONTENT_BROWSER_APPCACHE_APPCACHE_MANIFEST_PARSER_H_

#include <string>
#include <vector>
Expand Down Expand Up @@ -69,4 +69,4 @@ CONTENT_EXPORT bool ParseManifest(

} // namespace content

#endif // CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_
#endif // CONTENT_BROWSER_APPCACHE_APPCACHE_MANIFEST_PARSER_H_
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include <string>

#include "content/browser/appcache/manifest_parser.h"
#include "content/browser/appcache/appcache_manifest_parser.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

Expand Down
4 changes: 2 additions & 2 deletions content/content_browser.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@
'browser/appcache/appcache_working_set.h',
'browser/appcache/chrome_appcache_service.cc',
'browser/appcache/chrome_appcache_service.h',
'browser/appcache/manifest_parser.cc',
'browser/appcache/manifest_parser.h',
'browser/appcache/appcache_manifest_parser.cc',
'browser/appcache/appcache_manifest_parser.h',
'browser/appcache/view_appcache_internals_job.cc',
'browser/appcache/view_appcache_internals_job.h',
'browser/battery_status/battery_status_manager_android.cc',
Expand Down
2 changes: 1 addition & 1 deletion content/content_tests.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@
'browser/appcache/appcache_disk_cache_unittest.cc',
'browser/appcache/appcache_group_unittest.cc',
'browser/appcache/appcache_host_unittest.cc',
'browser/appcache/appcache_manifest_parser_unittest.cc',
'browser/appcache/appcache_quota_client_unittest.cc',
'browser/appcache/appcache_request_handler_unittest.cc',
'browser/appcache/appcache_response_unittest.cc',
Expand All @@ -393,7 +394,6 @@
'browser/appcache/appcache_update_job_unittest.cc',
'browser/appcache/appcache_url_request_job_unittest.cc',
'browser/appcache/chrome_appcache_service_unittest.cc',
'browser/appcache/manifest_parser_unittest.cc',
'browser/appcache/mock_appcache_policy.cc',
'browser/appcache/mock_appcache_policy.h',
'browser/appcache/mock_appcache_service.cc',
Expand Down

0 comments on commit e4ca79d

Please sign in to comment.