blob: 639afcca8e333446f202e3104c7758c19b22183d (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
// 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_GLOBAL_STATE_H_
#define COMPONENTS_HTML_VIEWER_GLOBAL_STATE_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/thread.h"
#include "build/build_config.h"
#include "components/html_viewer/blink_settings.h"
#include "components/html_viewer/discardable_memory_allocator.h"
#include "components/mus/gles2/mojo_gpu_memory_buffer_manager.h"
#include "components/mus/gles2/raster_thread_helper.h"
#include "components/mus/public/interfaces/gpu.mojom.h"
#include "components/resource_provider/public/cpp/resource_loader.h"
#include "mojo/services/tracing/public/cpp/tracing_impl.h"
#include "skia/ext/refptr.h"
#include "ui/gfx/geometry/size.h"
namespace font_service {
class FontLoader;
}
namespace mojo {
class ApplicationImpl;
class Shell;
}
namespace ui {
namespace mojo {
class UIInit;
}
}
namespace scheduler {
class RendererScheduler;
}
namespace html_viewer {
class BlinkPlatformImpl;
class MediaFactory;
// GlobalState encapsulates the necessary state needed by HTMLViewer. Some
// objects are created immediately in the constructor, otherwise not until
// InitIfNecessary() is invoked.
//
// GlobalState can be initialized in two distinct ways:
// . headless: this is determined by the command line, but can be forced by way
// of InitHeadless().
// . with a ui: this is done via InitIfNecessary().
class GlobalState {
public:
explicit GlobalState(mojo::ApplicationImpl* app);
~GlobalState();
// Inits with the specified screen size and device pixel ratio.
// NOTE: we wait to complete setup until the device pixel ratio is available
// as ResourceBundle uses the device pixel ratio during initialization.
void InitIfNecessary(const gfx::Size& screen_size_in_pixels,
float device_pixel_ratio);
bool did_init() const { return did_init_; }
const gfx::Size& screen_size_in_pixels() const {
return screen_size_in_pixels_;
}
float device_pixel_ratio() const { return device_pixel_ratio_; }
scoped_refptr<base::SingleThreadTaskRunner> compositor_thread() {
return compositor_thread_.task_runner();
}
gles2::RasterThreadHelper* raster_thread_helper() {
return &raster_thread_helper_;
}
mus::MojoGpuMemoryBufferManager* gpu_memory_buffer_manager() {
return &gpu_memory_buffer_manager_;
}
const mus::mojom::GpuInfo* GetGpuInfo();
MediaFactory* media_factory() { return media_factory_.get(); }
BlinkSettings* blink_settings() { return blink_settings_.get(); }
void set_blink_settings(BlinkSettings* blink_settings) {
blink_settings_.reset(blink_settings);
}
private:
// Callback for |gpu_service_|->GetGpuInfo().
void GetGpuInfoCallback(mus::mojom::GpuInfoPtr gpu_info);
// App for HTMLViewer, not the document's app.
// WARNING: do not expose this. It's too easy to use the wrong one.
// HTMLDocument should be using the application it creates, not this one.
mojo::ApplicationImpl* app_;
resource_provider::ResourceLoader resource_loader_;
// True once we've completed init.
bool did_init_;
float device_pixel_ratio_;
gfx::Size screen_size_in_pixels_;
scoped_ptr<ui::mojo::UIInit> ui_init_;
// Skia requires that we have one of these. Unlike the one used in chrome,
// this doesn't use purgable shared memory. Instead, it tries to free the
// oldest unlocked chunks on allocation.
//
// TODO(erg): In the long run, delete this allocator and get the real shared
// memory based purging allocator working here.
DiscardableMemoryAllocator discardable_memory_allocator_;
mojo::TracingImpl tracing_;
scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_;
scoped_ptr<BlinkPlatformImpl> blink_platform_;
base::Thread compositor_thread_;
gles2::RasterThreadHelper raster_thread_helper_;
mus::MojoGpuMemoryBufferManager gpu_memory_buffer_manager_;
mus::mojom::GpuPtr gpu_service_;
mus::mojom::GpuInfoPtr gpu_info_;
scoped_ptr<MediaFactory> media_factory_;
scoped_ptr<BlinkSettings> blink_settings_;
#if defined(OS_LINUX) && !defined(OS_ANDROID)
skia::RefPtr<font_service::FontLoader> font_loader_;
#endif
DISALLOW_COPY_AND_ASSIGN(GlobalState);
};
} // namespace html_viewer
#endif // COMPONENTS_HTML_VIEWER_GLOBAL_STATE_H_
|