| Index: ios/web/public/app/web_main.h
|
| diff --git a/ios/web/public/app/web_main.h b/ios/web/public/app/web_main.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b5d651cd6686eb41e8e29319c198ff2962dbe9aa
|
| --- /dev/null
|
| +++ b/ios/web/public/app/web_main.h
|
| @@ -0,0 +1,39 @@
|
| +// Copyright 2014 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.
|
| +
|
| +#ifndef IOS_WEB_PUBLIC_APP_WEB_MAIN_H_
|
| +#define IOS_WEB_PUBLIC_APP_WEB_MAIN_H_
|
| +
|
| +#include "base/memory/scoped_ptr.h"
|
| +#include "ios/web/public/app/web_main_delegate.h"
|
| +
|
| +namespace web {
|
| +class WebMainRunner;
|
| +
|
| +// Contains parameters passed to WebMain.
|
| +struct WebMainParams {
|
| + explicit WebMainParams(WebMainDelegate* delegate) : delegate(delegate) {}
|
| +
|
| + WebMainDelegate* delegate;
|
| +};
|
| +
|
| +// Encapsulates any setup and initialization that is needed by common
|
| +// web/ code. A single instance of this object should be created during app
|
| +// startup (or shortly after launch), and clients must ensure that this object
|
| +// is not destroyed while web/ code is still on the stack.
|
| +//
|
| +// Clients can add custom code to the startup flow by implementing the methods
|
| +// in WebMainDelegate and WebMainParts.
|
| +class WebMain {
|
| + public:
|
| + explicit WebMain(const WebMainParams& params);
|
| + ~WebMain();
|
| +
|
| + private:
|
| + scoped_ptr<WebMainRunner> web_main_runner_;
|
| +};
|
| +
|
| +} // namespace web
|
| +
|
| +#endif // IOS_WEB_PUBLIC_APP_WEB_MAIN_H_
|
|
|