| Index: chrome/browser/extensions/extension_bookmarks_module.h
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_bookmarks_module.h (revision 20552)
|
| +++ chrome/browser/extensions/extension_bookmarks_module.h (working copy)
|
| @@ -70,6 +70,12 @@
|
| virtual void Run();
|
| virtual bool RunImpl() = 0;
|
|
|
| + protected:
|
| + // Helper to get the bookmark id as int64 from the given string id.
|
| + // Sets error_ to an errro string if the given id string can't be parsed
|
| + // as an int64. In case of error, doesn't change id and returns false.
|
| + bool GetBookmarkIdAsInt64(const std::string& id_string, int64* id);
|
| +
|
| private:
|
| virtual void Observe(NotificationType type,
|
| const NotificationSource& source,
|
|
|