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

Unified Diff: chrome/browser/chromeos/cros/cert_library.h

Issue 10826225: Clean-up inline members of nested classes (chrome/browser/chromeos/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgotten files Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/cert_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/cert_library.h
diff --git a/chrome/browser/chromeos/cros/cert_library.h b/chrome/browser/chromeos/cros/cert_library.h
index eb3112e9f6024a9e92142fb6651dfa101f10529c..bbc760b1cbd49f70a5f91934953e8fb12f00f463 100644
--- a/chrome/browser/chromeos/cros/cert_library.h
+++ b/chrome/browser/chromeos/cros/cert_library.h
@@ -40,8 +40,8 @@ class CertLibrary {
// Wrapper class to provide an additional interface for net::CertificateList.
class CertList {
public:
- explicit CertList(CertLibrary* library) : cert_library_(library) {}
- ~CertList() {}
+ explicit CertList(CertLibrary* library);
+ ~CertList();
void Append(net::X509Certificate* cert) { list_.push_back(cert); }
void Clear() { list_.clear(); }
int Size() const { return static_cast<int>(list_.size()); }
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/cert_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698