| Index: chrome/browser/ui/app_list/extension_app_model_builder_unittest.cc
|
| diff --git a/chrome/browser/ui/app_list/extension_app_model_builder_unittest.cc b/chrome/browser/ui/app_list/extension_app_model_builder_unittest.cc
|
| index ae70cbbad86e9c8fb8ef9988ca352832a57cf006..89ae23f1f49e6aedaf8ad6d3bc7320802094d9e2 100644
|
| --- a/chrome/browser/ui/app_list/extension_app_model_builder_unittest.cc
|
| +++ b/chrome/browser/ui/app_list/extension_app_model_builder_unittest.cc
|
| @@ -23,6 +23,7 @@
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "extensions/browser/app_sorting.h"
|
| #include "extensions/browser/extension_prefs.h"
|
| +#include "extensions/browser/uninstall_reason.h"
|
| #include "extensions/common/extension_set.h"
|
| #include "extensions/common/manifest.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -197,7 +198,7 @@ TEST_F(ExtensionAppModelBuilderTest, DisableAndEnable) {
|
|
|
| TEST_F(ExtensionAppModelBuilderTest, Uninstall) {
|
| service_->UninstallExtension(
|
| - kPackagedApp2Id, ExtensionService::UNINSTALL_REASON_FOR_TESTING, NULL);
|
| + kPackagedApp2Id, extensions::UNINSTALL_REASON_FOR_TESTING, NULL);
|
| EXPECT_EQ(std::string("Packaged App 1,Hosted App"),
|
| GetModelContent(model_.get()));
|
|
|
| @@ -213,7 +214,7 @@ TEST_F(ExtensionAppModelBuilderTest, UninstallTerminatedApp) {
|
| service_->TrackTerminatedExtensionForTest(app);
|
|
|
| service_->UninstallExtension(
|
| - kPackagedApp2Id, ExtensionService::UNINSTALL_REASON_FOR_TESTING, NULL);
|
| + kPackagedApp2Id, extensions::UNINSTALL_REASON_FOR_TESTING, NULL);
|
| EXPECT_EQ(std::string("Packaged App 1,Hosted App"),
|
| GetModelContent(model_.get()));
|
|
|
|
|