| Index: components/html_viewer/global_state.cc
|
| diff --git a/components/html_viewer/global_state.cc b/components/html_viewer/global_state.cc
|
| index 4400472a14c7f13a91afb9abb38872e4fd5acdb0..44ffcf3856667ff14113ed3b271c7d4d7b5c9c45 100644
|
| --- a/components/html_viewer/global_state.cc
|
| +++ b/components/html_viewer/global_state.cc
|
| @@ -175,13 +175,13 @@ void GlobalState::InitIfNecessary(const gfx::Size& screen_size_in_pixels,
|
|
|
| // TODO(rjkroege): These two functions probably do not interoperate correctly
|
| // with MUS.
|
| -const mojo::GpuInfo* GlobalState::GetGpuInfo() {
|
| +const mus::mojom::GpuInfo* GlobalState::GetGpuInfo() {
|
| if (gpu_service_)
|
| CHECK(gpu_service_.WaitForIncomingResponse()) <<"Get GPU info failed!";
|
| return gpu_info_.get();
|
| }
|
|
|
| -void GlobalState::GetGpuInfoCallback(mojo::GpuInfoPtr gpu_info) {
|
| +void GlobalState::GetGpuInfoCallback(mus::mojom::GpuInfoPtr gpu_info) {
|
| CHECK(gpu_info);
|
| gpu_info_ = gpu_info.Pass();
|
| gpu_service_.reset();
|
|
|