summaryrefslogtreecommitdiffstats
path: root/chrome/browser/first_run/first_run_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/first_run/first_run_unittest.cc')
-rw-r--r--chrome/browser/first_run/first_run_unittest.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/first_run/first_run_unittest.cc b/chrome/browser/first_run/first_run_unittest.cc
index 6a32fe1..601416c 100644
--- a/chrome/browser/first_run/first_run_unittest.cc
+++ b/chrome/browser/first_run/first_run_unittest.cc
@@ -1,24 +1,25 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/file_util.h"
#include "chrome/browser/first_run/first_run.h"
+#include "chrome/browser/first_run/first_run_internal.h"
#include "testing/gtest/include/gtest/gtest.h"
class FirstRunTest : public testing::Test {
protected:
virtual void SetUp() {
- FirstRun::GetFirstRunSentinelFilePath(&sentinel_path_);
+ first_run::internal::GetFirstRunSentinelFilePath(&sentinel_path_);
}
FilePath sentinel_path_;
};
TEST_F(FirstRunTest, RemoveSentinel) {
- EXPECT_TRUE(FirstRun::CreateSentinel());
+ EXPECT_TRUE(first_run::CreateSentinel());
EXPECT_TRUE(file_util::PathExists(sentinel_path_));
- EXPECT_TRUE(FirstRun::RemoveSentinel());
+ EXPECT_TRUE(first_run::RemoveSentinel());
EXPECT_FALSE(file_util::PathExists(sentinel_path_));
}