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

Side by Side Diff: crypto/mock_apple_keychain_ios.cc

Issue 10875029: Rename MacKeychain to AppleKeychain (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address Avi's code review: add NStoCFCast and other nits. Created 8 years, 3 months 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
« no previous file with comments | « crypto/mock_apple_keychain.cc ('k') | crypto/mock_apple_keychain_mac.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "base/logging.h"
6 #include "base/time.h"
7 #include "crypto/mock_apple_keychain.h"
8
9 namespace crypto {
10
11 MockAppleKeychain::MockAppleKeychain()
12 : find_generic_result_(noErr),
13 called_add_generic_(false),
14 password_data_count_(0) {
15 }
16
17 MockAppleKeychain::~MockAppleKeychain() {
18 }
19
20 } // namespace crypto
OLDNEW
« no previous file with comments | « crypto/mock_apple_keychain.cc ('k') | crypto/mock_apple_keychain_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698