blob: 38d7e41059728602d27ee5cc227b3e86f71dde49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2010 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.
//
// Utilities shared by both Broker RPC client and server.
#ifndef CEEE_IE_BROKER_BROKER_RPC_UTILS_H_
#define CEEE_IE_BROKER_BROKER_RPC_UTILS_H_
#include <string>
// Protocol used for RPC comunication.
extern const wchar_t kRpcProtocol[];
// Returns RPC end point. Depends on current session ID and
// account used by chrome frame.
std::wstring GetRpcEndpointAddress();
#endif // CEEE_IE_BROKER_BROKER_RPC_UTILS_H_
|