summaryrefslogtreecommitdiffstats
path: root/chrome/common/net/dns.h
blob: 64302eade0be44cf245c456634fffbb2465d77e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2006-2008 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.

// This file has shared types used across IPC between render_dns_master.cc
// and dns_master.cc


#ifndef CHROME_COMMON_DNS_H__
#define CHROME_COMMON_DNS_H__

#include <vector>

namespace chrome_common_net{

// IPC messages are passed from the renderer to the browser in the form of
// Namelist instances.
// Each element of this vector is a hostname that needs to be looked up.
// The hostnames should never be empty strings.
typedef std::vector<std::string> NameList;

}

#endif  // CHROME_COMMON_DNS_H__