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

Side by Side Diff: content/browser/fileapi/blob_storage_host.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, 11 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_FILEAPI_BLOB_STORAGE_HOST_H_ 5 #ifndef CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_
6 #define CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_ 6 #define CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/macros.h"
13 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
14 #include "content/common/content_export.h" 15 #include "content/common/content_export.h"
15 #include "storage/common/data_element.h" 16 #include "storage/common/data_element.h"
16 17
17 class GURL; 18 class GURL;
18 19
19 namespace storage { 20 namespace storage {
20 class BlobDataHandle; 21 class BlobDataHandle;
21 class BlobStorageHost; 22 class BlobStorageHost;
22 class BlobStorageContext; 23 class BlobStorageContext;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 std::set<GURL> public_blob_urls_; 66 std::set<GURL> public_blob_urls_;
66 67
67 base::WeakPtr<storage::BlobStorageContext> context_; 68 base::WeakPtr<storage::BlobStorageContext> context_;
68 69
69 DISALLOW_COPY_AND_ASSIGN(BlobStorageHost); 70 DISALLOW_COPY_AND_ASSIGN(BlobStorageHost);
70 }; 71 };
71 72
72 } // namespace content 73 } // namespace content
73 74
74 #endif // CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_ 75 #endif // CONTENT_BROWSER_FILEAPI_BLOB_STORAGE_HOST_H_
OLDNEW
« no previous file with comments | « content/browser/fileapi/blob_storage_context_unittest.cc ('k') | content/browser/fileapi/browser_file_system_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698