| Index: base/xdg_util_unittest.cc
|
| diff --git a/base/xdg_util_unittest.cc b/base/xdg_util_unittest.cc
|
| index b8219210bc92f8330d0dd8bcfa30f5f25e20e940..24671b1628ee6029ddbaea40d00b018230277bf4 100644
|
| --- a/base/xdg_util_unittest.cc
|
| +++ b/base/xdg_util_unittest.cc
|
| @@ -4,11 +4,10 @@
|
|
|
| #include "base/xdg_util.h"
|
|
|
| +#include "base/env_var.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -#include "base/env_var.h"
|
| -
|
| using ::testing::_;
|
| using ::testing::Return;
|
| using ::testing::SetArgumentPointee;
|
| @@ -20,6 +19,7 @@ class MockEnvVarGetter : public base::EnvVarGetter {
|
| public:
|
| MOCK_METHOD2(GetEnv, bool(const char*, std::string* result));
|
| MOCK_METHOD2(SetEnv, bool(const char*, const std::string& new_value));
|
| + MOCK_METHOD1(UnSetEnv, bool(const char*));
|
| };
|
|
|
| const char* kGnome = "gnome";
|
|
|