diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-08 00:14:54 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-08 00:14:54 +0000 |
commit | 5ee44d495bad0360a05be1657fcc2b5bbd689976 (patch) | |
tree | 20f36773f3ffd8323e0073b33f5f3988705d8f3c /crypto/signature_creator_win.cc | |
parent | f12b14ebaef0065e903f25fddf851bc7abde3e8c (diff) | |
download | chromium_src-5ee44d495bad0360a05be1657fcc2b5bbd689976.zip chromium_src-5ee44d495bad0360a05be1657fcc2b5bbd689976.tar.gz chromium_src-5ee44d495bad0360a05be1657fcc2b5bbd689976.tar.bz2 |
Use a forward declaration of RSAPrivateKey in crypto/signature_creator.h.
R=rch@chromium.org
BUG=none
TEST=no compilation errors
Review URL: http://codereview.chromium.org/9348001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120872 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto/signature_creator_win.cc')
-rw-r--r-- | crypto/signature_creator_win.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/signature_creator_win.cc b/crypto/signature_creator_win.cc index 94fe87d..69e6513 100644 --- a/crypto/signature_creator_win.cc +++ b/crypto/signature_creator_win.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -6,6 +6,7 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" +#include "crypto/rsa_private_key.h" namespace crypto { |