| Index: chrome/browser/search/local_ntp_source.cc
|
| ===================================================================
|
| --- chrome/browser/search/local_ntp_source.cc (revision 192091)
|
| +++ chrome/browser/search/local_ntp_source.cc (working copy)
|
| @@ -8,11 +8,11 @@
|
| #include "base/memory/ref_counted_memory.h"
|
| #include "base/string_util.h"
|
| #include "chrome/common/url_constants.h"
|
| -#include "content/public/common/content_client.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "grit/browser_resources.h"
|
| #include "grit/ui_resources.h"
|
| #include "net/url_request/url_request.h"
|
| +#include "ui/base/resource/resource_bundle.h"
|
|
|
| namespace {
|
|
|
| @@ -58,7 +58,7 @@
|
| }
|
|
|
| scoped_refptr<base::RefCountedStaticMemory> response(
|
| - content::GetContentClient()->GetDataResourceBytes(identifier));
|
| + ResourceBundle::GetSharedInstance().LoadDataResourceBytes(identifier));
|
| callback.Run(response);
|
| }
|
|
|
|
|