| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Brought to you by number 42. | 5 // Brought to you by number 42. |
| 6 | 6 |
| 7 #ifndef NET_BASE_COOKIE_STORE_H_ | 7 #ifndef NET_BASE_COOKIE_STORE_H_ |
| 8 #define NET_BASE_COOKIE_STORE_H_ | 8 #define NET_BASE_COOKIE_STORE_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> |
| 12 | 13 |
| 13 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 14 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
| 15 #include "base/time.h" | 16 #include "base/time.h" |
| 16 #include "net/base/cookie_options.h" | 17 #include "net/base/cookie_options.h" |
| 17 | 18 |
| 18 class GURL; | 19 class GURL; |
| 19 | 20 |
| 20 namespace net { | 21 namespace net { |
| 21 | 22 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 } | 72 } |
| 72 | 73 |
| 73 protected: | 74 protected: |
| 74 friend class base::RefCountedThreadSafe<CookieStore>; | 75 friend class base::RefCountedThreadSafe<CookieStore>; |
| 75 virtual ~CookieStore() {} | 76 virtual ~CookieStore() {} |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 } // namespace net | 79 } // namespace net |
| 79 | 80 |
| 80 #endif // NET_BASE_COOKIE_STORE_H_ | 81 #endif // NET_BASE_COOKIE_STORE_H_ |
| OLD | NEW |