| Index: chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc
|
| diff --git a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc
|
| index 69af0893969cfda178783831dbf47c63a1d8ccde..605a64832017a3ad68ab85d77776a8b613004624 100644
|
| --- a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc
|
| +++ b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc
|
| @@ -47,7 +47,7 @@ bool ReadingListPrivateAddEntryFunction::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool ReadingListPrivateRemoveEntryFunction::RunImpl() {
|
| +bool ReadingListPrivateRemoveEntryFunction::RunSync() {
|
| scoped_ptr<RemoveEntry::Params> params(RemoveEntry::Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
| DomDistillerService* service =
|
| @@ -63,7 +63,7 @@ bool ReadingListPrivateRemoveEntryFunction::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool ReadingListPrivateGetEntriesFunction::RunImpl() {
|
| +bool ReadingListPrivateGetEntriesFunction::RunSync() {
|
| DomDistillerService* service =
|
| DomDistillerServiceFactory::GetForBrowserContext(GetProfile());
|
| const std::vector<ArticleEntry>& entries = service->GetEntries();
|
|
|