blob: 5f7c24ea5b99172215ddf182dfb925c86e374369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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.
//
// The part of WebNavigation implementation that needs to reside on the broker
// side.
#ifndef CEEE_IE_BROKER_WEBNAVIGATION_API_MODULE_H_
#define CEEE_IE_BROKER_WEBNAVIGATION_API_MODULE_H_
class ApiDispatcher;
namespace webnavigation_api {
// Registers permanent event handlers to convert tab window handles in event
// arguments into actual tab IDs.
void RegisterInvocations(ApiDispatcher* dispatcher);
} // namespace webnavigation_api
#endif // CEEE_IE_BROKER_WEBNAVIGATION_API_MODULE_H_
|