| Index: chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc
|
| diff --git a/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc b/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc
|
| index 50c28a907e21285a56508b2507ae9194e63296ce..8b90cb046151b585438f268652a9bc072e150f54 100644
|
| --- a/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc
|
| +++ b/chrome/browser/chromeos/input_method/input_method_engine_browsertests.cc
|
| @@ -157,9 +157,9 @@ IN_PROC_BROWSER_TEST_P(InputMethodEngineBrowserTest,
|
| InputMethodManager::Get()->GetActiveIMEState()->ChangeInputMethod(
|
| kIdentityIMEID, false /* show_message */);
|
|
|
| - scoped_ptr<MockIMEInputContextHandler> mock_input_context(
|
| + std::unique_ptr<MockIMEInputContextHandler> mock_input_context(
|
| new MockIMEInputContextHandler());
|
| - scoped_ptr<MockIMECandidateWindowHandler> mock_candidate_window(
|
| + std::unique_ptr<MockIMECandidateWindowHandler> mock_candidate_window(
|
| new MockIMECandidateWindowHandler());
|
|
|
| ui::IMEBridge::Get()->SetInputContextHandler(mock_input_context.get());
|
| @@ -240,9 +240,9 @@ IN_PROC_BROWSER_TEST_P(InputMethodEngineBrowserTest,
|
| InputMethodManager::Get()->GetActiveIMEState()->ChangeInputMethod(
|
| kAPIArgumentIMEID, false /* show_message */);
|
|
|
| - scoped_ptr<MockIMEInputContextHandler> mock_input_context(
|
| + std::unique_ptr<MockIMEInputContextHandler> mock_input_context(
|
| new MockIMEInputContextHandler());
|
| - scoped_ptr<MockIMECandidateWindowHandler> mock_candidate_window(
|
| + std::unique_ptr<MockIMECandidateWindowHandler> mock_candidate_window(
|
| new MockIMECandidateWindowHandler());
|
|
|
| ui::IMEBridge::Get()->SetInputContextHandler(mock_input_context.get());
|
|
|