1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "extensions/browser/extensions_browser_client.h"
7 #include "base/basictypes.h"
8 #include "base/logging.h"
9 #include "extensions/browser/extension_error.h"
11 namespace extensions
{
15 ExtensionsBrowserClient
* g_client
= NULL
;
19 void ExtensionsBrowserClient::ReportError(content::BrowserContext
* context
,
20 scoped_ptr
<ExtensionError
> error
) {
21 LOG(ERROR
) << error
->GetDebugString();
24 ExtensionsBrowserClient
* ExtensionsBrowserClient::Get() {
28 void ExtensionsBrowserClient::Set(ExtensionsBrowserClient
* client
) {
32 } // namespace extensions