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

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

Issue 2511993004: [ObjC ARC] Converts ios/web:core to ARC.Automatically generated ARCMigrate commitNotable issues:… (Closed)
Patch Set: s/mm/cc Created 4 years 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
« ios/web/history_state_util.cc ('K') | « ios/web/history_state_util.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« ios/web/history_state_util.cc ('K') | « ios/web/history_state_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698