| Index: content/browser/renderer_host/pepper/browser_ppapi_host_impl.cc
|
| diff --git a/content/browser/renderer_host/pepper/browser_ppapi_host_impl.cc b/content/browser/renderer_host/pepper/browser_ppapi_host_impl.cc
|
| index dedd51ee810c8f039746f6cede22295f7057ad54..7d5bd2d808dd8a5fc281567ad806944d32340c38 100644
|
| --- a/content/browser/renderer_host/pepper/browser_ppapi_host_impl.cc
|
| +++ b/content/browser/renderer_host/pepper/browser_ppapi_host_impl.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h"
|
|
|
| +#include "base/logging.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/render_view_host.h"
|
| #include "ipc/ipc_message_macros.h"
|
| @@ -17,6 +18,11 @@ BrowserPpapiHostImpl::BrowserPpapiHostImpl(
|
| plugin_process_handle_(base::kNullProcessHandle) {
|
| ppapi_host_.AddHostFactoryFilter(scoped_ptr<ppapi::host::HostFactory>(
|
| new ContentBrowserPepperHostFactory(this)));
|
| +
|
| + // TODO(brettw) bug 147507: Remove this log statement when we figure out why
|
| + // permissions aren't hooked up properly.
|
| + LOG(INFO) << "BrowserPpapiHostImpl::BrowserPpapiHostImpl "
|
| + << "permissions = " << permissions.GetBits();
|
| }
|
|
|
| BrowserPpapiHostImpl::~BrowserPpapiHostImpl() {
|
|
|