| Index: chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
|
| diff --git a/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc b/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
|
| index 4a92e4bcd5d767fda45c840a5f57834f02b74fce..8c90afeb7dbb03e10eca6fe5c0aef921dee01813 100644
|
| --- a/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
|
| +++ b/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc
|
| @@ -45,6 +45,15 @@ syncer::SyncableService* LazyDomDistillerService::GetSyncableService() const {
|
| return instance()->GetSyncableService();
|
| }
|
|
|
| +bool LazyDomDistillerService::HasEntry(const std::string& entry_id) {
|
| + return instance()->HasEntry(entry_id);
|
| +}
|
| +
|
| +std::string LazyDomDistillerService::GetUrlForEntry(
|
| + const std::string& entry_id) {
|
| + return instance()->GetUrlForEntry(entry_id);
|
| +}
|
| +
|
| const std::string LazyDomDistillerService::AddToList(
|
| const GURL& url,
|
| scoped_ptr<DistillerPage> distiller_page,
|
|
|