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

Side by Side Diff: ios/web/history_state_util.mm

Issue 988383002: Upstream various ios/web utilities and helpers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@web-public-upstreaming
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import "ios/web/history_state_util.h"
6
7 #include "base/logging.h"
8 #include "url/gurl.h"
9
10 namespace web {
11 namespace history_state_util {
12
13 bool IsHistoryStateChangeValid(const GURL& currentUrl,
14 const GURL& toUrl) {
15 // These two checks are very important to the security of the page. We cannot
16 // allow the page to change the state to an invalid URL.
17 CHECK(currentUrl.is_valid());
18 CHECK(toUrl.is_valid());
19
20 return toUrl.GetOrigin() == currentUrl.GetOrigin();
21 }
22
23 GURL GetHistoryStateChangeUrl(const GURL& currentUrl,
24 const GURL& baseUrl,
25 const std::string& destination) {
26 if (!baseUrl.is_valid())
27 return GURL();
28 GURL toUrl = baseUrl.Resolve(destination);
29
30 if (!toUrl.is_valid() || !IsHistoryStateChangeValid(currentUrl, toUrl))
31 return GURL();
32
33 return toUrl;
34 }
35
36 } // namespace history_state_util
37 } // namespace web
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698