Roll src/third_party/skia a6ae14e:85693c1
[chromium-blink-merge.git] / ios / web / shell / shell_main_delegate.h
blob1bfd9bdf14d741b3bc984b35e46d97d1eca92a10
1 // Copyright 2014 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.
5 #ifndef IOS_WEB_SHELL_SHELL_MAIN_DELEGATE_H_
6 #define IOS_WEB_SHELL_SHELL_MAIN_DELEGATE_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "ios/web/public/app/web_main_delegate.h"
13 namespace web {
14 class ShellWebClient;
16 class ShellMainDelegate : public WebMainDelegate {
17 public:
18 ShellMainDelegate();
19 ~ShellMainDelegate() override;
21 void BasicStartupComplete() override;
23 private:
24 scoped_ptr<ShellWebClient> web_client_;
27 } // namespace web
29 #endif // IOS_WEB_SHELL_SHELL_MAIN_DELEGATE_H_