| Index: components/history/core/browser/url_row.h
|
| diff --git a/components/history/core/browser/url_row.h b/components/history/core/browser/url_row.h
|
| index baa0ce106e79a326c98ece93adf52ad7def65464..c333c31a44a7ed519d9768e8c2aea8b28502b25f 100644
|
| --- a/components/history/core/browser/url_row.h
|
| +++ b/components/history/core/browser/url_row.h
|
| @@ -38,6 +38,8 @@ class URLRow {
|
| // an IPC message. This constructor should probably not be used otherwise.
|
| URLRow(const GURL& url, URLID id);
|
|
|
| + URLRow(const URLRow& other);
|
| +
|
| virtual ~URLRow();
|
| URLRow& operator=(const URLRow& other);
|
|
|
| @@ -168,6 +170,7 @@ class URLResult : public URLRow {
|
| URLResult(const GURL& url,
|
| const query_parser::Snippet::MatchPositions& title_matches);
|
| explicit URLResult(const URLRow& url_row);
|
| + URLResult(const URLResult& other);
|
| ~URLResult() override;
|
|
|
| base::Time visit_time() const { return visit_time_; }
|
|
|