OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 the letter D and the number 2. | 5 // Brought to you by the letter D and the number 2. |
6 | 6 |
7 #ifndef NET_BASE_COOKIE_MONSTER_H_ | 7 #ifndef NET_BASE_COOKIE_MONSTER_H_ |
8 #define NET_BASE_COOKIE_MONSTER_H_ | 8 #define NET_BASE_COOKIE_MONSTER_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 protected: | 383 protected: |
384 PersistentCookieStore() { } | 384 PersistentCookieStore() { } |
385 | 385 |
386 private: | 386 private: |
387 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); | 387 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); |
388 }; | 388 }; |
389 | 389 |
390 } // namespace net | 390 } // namespace net |
391 | 391 |
392 #endif // NET_BASE_COOKIE_MONSTER_H_ | 392 #endif // NET_BASE_COOKIE_MONSTER_H_ |
393 | |
OLD | NEW |