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

Unified Diff: content/renderer/manifest/manifest_manager.cc

Issue 2775963002: s/same_page/same_document for DidCommitProvisionalLoad method. (Closed)
Patch Set: Addressed review comment Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/manifest/manifest_manager.h ('k') | content/renderer/pepper/plugin_power_saver_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/manifest/manifest_manager.cc
diff --git a/content/renderer/manifest/manifest_manager.cc b/content/renderer/manifest/manifest_manager.cc
index b6d3b819087515bd813fc447ee166ba8c45e56e8..e7ccbe1c312c5a0a12a041855ca7f5ee17c96087 100644
--- a/content/renderer/manifest/manifest_manager.cc
+++ b/content/renderer/manifest/manifest_manager.cc
@@ -107,8 +107,8 @@ void ManifestManager::DidChangeManifest() {
void ManifestManager::DidCommitProvisionalLoad(
bool is_new_navigation,
- bool is_same_page_navigation) {
- if (is_same_page_navigation)
+ bool is_same_document_navigation) {
+ if (is_same_document_navigation)
return;
may_have_manifest_ = false;
« no previous file with comments | « content/renderer/manifest/manifest_manager.h ('k') | content/renderer/pepper/plugin_power_saver_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698