blob: 59563ea54568760ed15ea2cc0ab2db63dc2a0cec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright 2015 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 COMPONENTS_HTML_VIEWER_HTML_VIEWER_H_
#define COMPONENTS_HTML_VIEWER_HTML_VIEWER_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "mojo/shell/public/cpp/application_delegate.h"
#include "mojo/shell/public/cpp/interface_factory_impl.h"
#include "mojo/shell/public/interfaces/content_handler.mojom.h"
namespace html_viewer {
class GlobalState;
class HTMLViewer : public mojo::ApplicationDelegate,
public mojo::InterfaceFactory<mojo::ContentHandler> {
public:
HTMLViewer();
~HTMLViewer() override;
protected:
GlobalState* global_state() const { return global_state_.get(); }
mojo::ApplicationImpl* app() const { return app_; }
// Overridden from ApplicationDelegate:
void Initialize(mojo::ApplicationImpl* app) override;
private:
// Overridden from ApplicationDelegate:
bool ConfigureIncomingConnection(
mojo::ApplicationConnection* connection) override;
// Overridden from InterfaceFactory<ContentHandler>
void Create(mojo::ApplicationConnection* connection,
mojo::InterfaceRequest<mojo::ContentHandler> request) override;
scoped_ptr<GlobalState> global_state_;
mojo::ApplicationImpl* app_;
DISALLOW_COPY_AND_ASSIGN(HTMLViewer);
};
} // namespace html_viewer
#endif // COMPONENTS_HTML_VIEWER_HTML_VIEWER_H_
|