diff options
Diffstat (limited to 'ceee/ie/broker/webnavigation_api_module.h')
-rw-r--r-- | ceee/ie/broker/webnavigation_api_module.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ceee/ie/broker/webnavigation_api_module.h b/ceee/ie/broker/webnavigation_api_module.h new file mode 100644 index 0000000..5f7c24e --- /dev/null +++ b/ceee/ie/broker/webnavigation_api_module.h @@ -0,0 +1,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_ |