blob: fc51c20e93a93d2f4138c58ed4e20dd2ad32e796 [file] [log] [blame]
// Copyright 2014 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.
#include "chrome/browser/ui/webui/mojo_web_ui_controller.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/webui/mojo_web_ui_handler.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/common/bindings_policy.h"
#include "mojo/public/cpp/system/core.h"
MojoWebUIControllerBase::MojoWebUIControllerBase(content::WebUI* contents)
: WebUIController(contents) {}
MojoWebUIControllerBase::~MojoWebUIControllerBase() {
}
void MojoWebUIControllerBase::RenderFrameCreated(
content::RenderFrameHost* render_frame_host) {
render_frame_host->AllowBindings(content::BINDINGS_POLICY_WEB_UI);
}