| Index: chrome/browser/ui/webui/vr_shell/vr_shell_ui_ui.cc
|
| diff --git a/chrome/browser/ui/webui/vr_shell/vr_shell_ui_ui.cc b/chrome/browser/ui/webui/vr_shell/vr_shell_ui_ui.cc
|
| index 7e75241b9d365d31e9bf2672582f4dbbbc84af99..5b5300eb1657790f8a17cb04ee52a93193a33677 100644
|
| --- a/chrome/browser/ui/webui/vr_shell/vr_shell_ui_ui.cc
|
| +++ b/chrome/browser/ui/webui/vr_shell/vr_shell_ui_ui.cc
|
| @@ -4,6 +4,9 @@
|
|
|
| #include "chrome/browser/ui/webui/vr_shell/vr_shell_ui_ui.h"
|
|
|
| +#include <string>
|
| +#include <unordered_set>
|
| +
|
| #include "base/memory/ptr_util.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/webui/vr_shell/vr_shell_ui_message_handler.h"
|
| @@ -169,10 +172,9 @@ void RemoteDataSource::OnURLFetchComplete(const net::URLFetcher* source) {
|
| // page from remote server. Empty string indicates default page.
|
| use_localhost_ = false;
|
| content::URLDataSource::GotDataCallback callback = it->second;
|
| - StartDataRequest(
|
| - std::string(),
|
| - content::ResourceRequestInfo::WebContentsGetter(),
|
| - callback);
|
| + StartDataRequest(std::string(),
|
| + content::ResourceRequestInfo::WebContentsGetter(),
|
| + callback);
|
| }
|
| } else {
|
| it->second.Run(base::RefCountedString::TakeString(&response));
|
|
|