Index: chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
diff --git a/chrome/browser/ui/passwords/manage_passwords_bubble_model.h b/chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
index e6af1dfe2eb2e8b1b404b81d3b72015a24127f9d..d9a6f7a6926eb4b72f43cd937017a19a99bf6e69 100644 |
--- a/chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
+++ b/chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
@@ -5,6 +5,8 @@ |
#ifndef CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ |
#define CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ |
+#include <utility> |
+ |
#include "base/macros.h" |
#include "base/memory/scoped_vector.h" |
#include "base/time/clock.h" |
@@ -142,7 +144,7 @@ class ManagePasswordsBubbleModel : public content::WebContentsObserver { |
return dismissal_reason_; |
} |
- void set_clock(scoped_ptr<base::Clock> clock) { clock_ = clock.Pass(); } |
+ void set_clock(scoped_ptr<base::Clock> clock) { clock_ = std::move(clock); } |
#endif |
private: |