[go: nahoru, domu]

blob: adb2bd122fdc03333835106e81d00005d4673f6a [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/net/url_test_util.h"
#include "url/gurl.h"
namespace net {
std::string GetContentAndFragmentForUrl(const GURL& url) {
return url.GetContent() + (url.has_ref() ? "#" + url.ref() : "");
}
} // namespace net