// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PPAPI_SHARED_IMPL_API_ID_H_ #define PPAPI_SHARED_IMPL_API_ID_H_ namespace ppapi { // These numbers must be all small integers. They are used in a lookup table // to route messages to the appropriate message handler. enum ApiID { … }; } // namespace ppapi #endif // PPAPI_SHARED_IMPL_API_ID_H_