blob: afc0cce1097bff2483a57dc1486bb6b3ec62a50f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
diff --git a/components/power_bookmarks/core/power_bookmark_service.cc b/components/power_bookmarks/core/power_bookmark_service.cc
index 7b9b35a5d..463fbbf35 100644
--- a/components/power_bookmarks/core/power_bookmark_service.cc
+++ b/components/power_bookmarks/core/power_bookmark_service.cc
@@ -4,6 +4,8 @@
#include "components/power_bookmarks/core/power_bookmark_service.h"
+#include <algorithm>
+
namespace power_bookmarks {
PowerBookmarkService::PowerBookmarkService() = default;
@@ -22,4 +24,4 @@ void PowerBookmarkService::RemoveDataProvider(
data_providers_.erase(it);
}
-} // namespace power_bookmarks
\ No newline at end of file
+} // namespace power_bookmarks
|