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

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

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 1 month 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <stdarg.h> 5 #include <stdarg.h>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/stringprintf.h" 10 #include "base/stringprintf.h"
11 #include "base/time.h" 11 #include "base/time.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
13 #include "chrome/browser/password_manager/native_backend_gnome_x.h" 13 #include "chrome/browser/password_manager/native_backend_gnome_x.h"
14 #include "chrome/browser/prefs/pref_service.h" 14 #include "chrome/browser/prefs/pref_service.h"
15 #include "chrome/common/pref_names.h" 15 #include "chrome/common/pref_names.h"
16 #include "chrome/test/base/testing_profile.h" 16 #include "chrome/test/base/testing_profile.h"
17 #include "content/test/test_browser_thread.h" 17 #include "content/test/test_browser_thread.h"
18 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
19 19
20 using content::BrowserThread;
20 using webkit_glue::PasswordForm; 21 using webkit_glue::PasswordForm;
21 22
22 namespace { 23 namespace {
23 24
24 // What follows is a very simple implementation of the subset of the GNOME 25 // What follows is a very simple implementation of the subset of the GNOME
25 // Keyring API that we actually use. It gets substituted for the real one by 26 // Keyring API that we actually use. It gets substituted for the real one by
26 // MockGnomeKeyringLoader, which hooks into the facility normally used to load 27 // MockGnomeKeyringLoader, which hooks into the facility normally used to load
27 // the GNOME Keyring library at runtime to avoid a static dependency on it. 28 // the GNOME Keyring library at runtime to avoid a static dependency on it.
28 29
29 struct MockKeyringItem { 30 struct MockKeyringItem {
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 RunBothThreads(); 886 RunBothThreads();
886 887
887 // The other two copies of the password in different profiles should remain. 888 // The other two copies of the password in different profiles should remain.
888 EXPECT_EQ(2u, mock_keyring_items.size()); 889 EXPECT_EQ(2u, mock_keyring_items.size());
889 if (mock_keyring_items.size() > 0) 890 if (mock_keyring_items.size() > 0)
890 CheckMockKeyringItem(&mock_keyring_items[0], form_google_, "chrome"); 891 CheckMockKeyringItem(&mock_keyring_items[0], form_google_, "chrome");
891 if (mock_keyring_items.size() > 1) 892 if (mock_keyring_items.size() > 1)
892 CheckMockKeyringItem(&mock_keyring_items[1], form_google_, "chrome-42"); 893 CheckMockKeyringItem(&mock_keyring_items[1], form_google_, "chrome-42");
893 } 894 }
894 } 895 }
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/native_backend_gnome_x.cc ('k') | chrome/browser/password_manager/native_backend_kwallet_x.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698