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

Side by Side Diff: chrome/browser/password_manager/login_database_unittest.cc

Issue 89523002: Move Posix file utils to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/net/net_log_temp_file.cc ('k') | chrome/browser/process_singleton_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "testing/gtest/include/gtest/gtest.h" 5 #include "testing/gtest/include/gtest/gtest.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 EXPECT_THAT(output, Eq(vec)); 630 EXPECT_THAT(output, Eq(vec));
631 } 631 }
632 632
633 #if defined(OS_POSIX) 633 #if defined(OS_POSIX)
634 // Only the current user has permission to read the database. 634 // Only the current user has permission to read the database.
635 // 635 //
636 // Only POSIX because GetPosixFilePermissions() only exists on POSIX. 636 // Only POSIX because GetPosixFilePermissions() only exists on POSIX.
637 // This tests that sql::Connection::set_restrict_to_user() was called, 637 // This tests that sql::Connection::set_restrict_to_user() was called,
638 // and that function is a noop on non-POSIX platforms in any case. 638 // and that function is a noop on non-POSIX platforms in any case.
639 TEST_F(LoginDatabaseTest, FilePermissions) { 639 TEST_F(LoginDatabaseTest, FilePermissions) {
640 int mode = file_util::FILE_PERMISSION_MASK; 640 int mode = base::FILE_PERMISSION_MASK;
641 EXPECT_TRUE(file_util::GetPosixFilePermissions(file_, &mode)); 641 EXPECT_TRUE(base::GetPosixFilePermissions(file_, &mode));
642 EXPECT_EQ((mode & file_util::FILE_PERMISSION_USER_MASK), mode); 642 EXPECT_EQ((mode & base::FILE_PERMISSION_USER_MASK), mode);
643 } 643 }
644 #endif // defined(OS_POSIX) 644 #endif // defined(OS_POSIX)
OLDNEW
« no previous file with comments | « chrome/browser/net/net_log_temp_file.cc ('k') | chrome/browser/process_singleton_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698