Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1610)

Unified Diff: chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.h

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.h
diff --git a/chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.h b/chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.h
index dfbce2b13d2a661c6c30a4c24c48dbd81b7eb2a5..cae9b5d1c13f22fafad7c8386bbb3cd7fc4efe91 100644
--- a/chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.h
+++ b/chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.h
@@ -5,11 +5,11 @@
#ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_L10N_UTIL_TEST_UTIL_H_
#define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_L10N_UTIL_TEST_UTIL_H_
+#include <memory>
#include <string>
#include "base/compiler_specific.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "base/values.h"
#include "chrome/browser/chromeos/input_method/mock_input_method_manager.h"
#include "ui/base/ime/chromeos/input_method_descriptor.h"
@@ -23,8 +23,8 @@ class MockInputMethodManagerWithInputMethods
~MockInputMethodManagerWithInputMethods() override;
// input_method::MockInputMethodManager:
- scoped_ptr<input_method::InputMethodDescriptors> GetSupportedInputMethods()
- const override;
+ std::unique_ptr<input_method::InputMethodDescriptors>
+ GetSupportedInputMethods() const override;
void AddInputMethod(const std::string& id,
const std::string& raw_layout,
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/l10n_util.cc ('k') | chrome/browser/ui/webui/chromeos/login/l10n_util_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698