context_provider_main.h 607 B

123456789101112131415
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef FUCHSIA_WEB_WEBENGINE_CONTEXT_PROVIDER_MAIN_H_
  5. #define FUCHSIA_WEB_WEBENGINE_CONTEXT_PROVIDER_MAIN_H_
  6. #include "fuchsia_web/webengine/web_engine_export.h"
  7. // Main function for the process that implements web::ContextProvider interface.
  8. // Called by WebRunnerMainDelegate when the process is started without --type
  9. // argument.
  10. WEB_ENGINE_EXPORT int ContextProviderMain();
  11. #endif // FUCHSIA_WEB_WEBENGINE_CONTEXT_PROVIDER_MAIN_H_