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

Side by Side Diff: content/browser/net/quota_policy_cookie_store.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ 5 #ifndef CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_
6 #define CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ 6 #define CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_
7 7
8 #include <stddef.h>
9
8 #include <string> 10 #include <string>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/callback_forward.h" 13 #include "base/callback_forward.h"
12 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
14 #include "content/common/content_export.h" 17 #include "content/common/content_export.h"
15 #include "net/cookies/cookie_monster.h" 18 #include "net/cookies/cookie_monster.h"
16 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" 19 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h"
17 20
18 class Task; 21 class Task;
19 22
20 namespace base { 23 namespace base {
21 class FilePath; 24 class FilePath;
22 class SequencedTaskRunner; 25 class SequencedTaskRunner;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 76
74 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_; 77 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_;
75 scoped_refptr<net::SQLitePersistentCookieStore> persistent_store_; 78 scoped_refptr<net::SQLitePersistentCookieStore> persistent_store_;
76 79
77 DISALLOW_COPY_AND_ASSIGN(QuotaPolicyCookieStore); 80 DISALLOW_COPY_AND_ASSIGN(QuotaPolicyCookieStore);
78 }; 81 };
79 82
80 } // namespace content 83 } // namespace content
81 84
82 #endif // CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_ 85 #endif // CONTENT_BROWSER_NET_QUOTA_POLICY_COOKIE_STORE_H_
OLDNEW
« no previous file with comments | « content/browser/net/browser_online_state_observer.h ('k') | content/browser/net/quota_policy_cookie_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698