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

Unified Diff: ios/web/navigation/navigation_manager_impl.mm

Issue 2957163002: [Navigation Experiment] Add WKBasedNavigationManagerImpl. (Closed)
Patch Set: Patch for landing Created 3 years, 6 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
Index: ios/web/navigation/navigation_manager_impl.mm
diff --git a/ios/web/navigation/navigation_manager_impl.mm b/ios/web/navigation/navigation_manager_impl.mm
new file mode 100644
index 0000000000000000000000000000000000000000..612d49c51e7edf99082bac9556965b40c3d01ab1
--- /dev/null
+++ b/ios/web/navigation/navigation_manager_impl.mm
@@ -0,0 +1,56 @@
+// Copyright 2017 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.
+
+#import "ios/web/navigation/navigation_manager_impl.h"
+
+#include "ui/base/page_transition_types.h"
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
+namespace web {
+
+NavigationManager::WebLoadParams::WebLoadParams(const GURL& url)
+ : url(url),
+ transition_type(ui::PAGE_TRANSITION_LINK),
+ user_agent_override_option(UserAgentOverrideOption::INHERIT),
+ is_renderer_initiated(false),
+ post_data(nil) {}
+
+NavigationManager::WebLoadParams::~WebLoadParams() {}
+
+NavigationManager::WebLoadParams::WebLoadParams(const WebLoadParams& other)
+ : url(other.url),
+ referrer(other.referrer),
+ transition_type(other.transition_type),
+ user_agent_override_option(other.user_agent_override_option),
+ is_renderer_initiated(other.is_renderer_initiated),
+ extra_headers([other.extra_headers copy]),
+ post_data([other.post_data copy]) {}
+
+NavigationManager::WebLoadParams& NavigationManager::WebLoadParams::operator=(
+ const WebLoadParams& other) {
+ url = other.url;
+ referrer = other.referrer;
+ is_renderer_initiated = other.is_renderer_initiated;
+ transition_type = other.transition_type;
+ user_agent_override_option = other.user_agent_override_option;
+ extra_headers.reset([other.extra_headers copy]);
+ post_data.reset([other.post_data copy]);
+
+ return *this;
+}
+
+/* static */
+bool NavigationManagerImpl::AreUrlsFragmentChangeNavigation(
+ const GURL& existing_url,
+ const GURL& new_url) {
+ if (existing_url == new_url || !new_url.has_ref())
+ return false;
+
+ return existing_url.EqualsIgnoringRef(new_url);
+}
+
+} // namespace web
« no previous file with comments | « ios/web/navigation/navigation_manager_impl.h ('k') | ios/web/navigation/navigation_manager_impl_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698