blob: 36654fa259b7bb8db862de07a7829b1c6d21b9fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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.
//
// Utility functions for CEEE.
#ifndef CEEE_IE_COMMON_CEEE_UTIL_H_
#define CEEE_IE_COMMON_CEEE_UTIL_H_
namespace ceee_util {
// Returns true iff the IE CEEE is registered.
bool IsIeCeeeRegistered();
} // namespace ceee_util
#endif // CEEE_IE_COMMON_CEEE_UTIL_H_
|