chromium/url/ipc/url_param_traits.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "url/ipc/url_param_traits.h"

#include <string>

#include "base/pickle.h"
#include "url/gurl.h"
#include "url/url_constants.h"

namespace IPC {

void ParamTraits<GURL>::Write(base::Pickle* m, const GURL& p) {}

bool ParamTraits<GURL>::Read(const base::Pickle* m,
                             base::PickleIterator* iter,
                             GURL* p) {}

void ParamTraits<GURL>::Log(const GURL& p, std::string* l) {}

}  // namespace IPC