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

Side by Side Diff: content/renderer/pepper/pepper_file_system_host.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_ 6 #define CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_
7 7
8 #include <stdint.h>
9
8 #include <string> 10 #include <string>
9 11
10 #include "base/basictypes.h"
11 #include "base/files/file.h" 12 #include "base/files/file.h"
13 #include "base/macros.h"
12 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
13 #include "ppapi/c/pp_file_info.h" 15 #include "ppapi/c/pp_file_info.h"
14 #include "ppapi/c/private/ppb_isolated_file_system_private.h" 16 #include "ppapi/c/private/ppb_isolated_file_system_private.h"
15 #include "ppapi/host/host_message_context.h" 17 #include "ppapi/host/host_message_context.h"
16 #include "ppapi/host/resource_host.h" 18 #include "ppapi/host/resource_host.h"
17 #include "url/gurl.h" 19 #include "url/gurl.h"
18 20
19 namespace content { 21 namespace content {
20 22
21 class RendererPpapiHost; 23 class RendererPpapiHost;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 bool called_open_; // whether open has been called. 75 bool called_open_; // whether open has been called.
74 76
75 base::WeakPtrFactory<PepperFileSystemHost> weak_factory_; 77 base::WeakPtrFactory<PepperFileSystemHost> weak_factory_;
76 78
77 DISALLOW_COPY_AND_ASSIGN(PepperFileSystemHost); 79 DISALLOW_COPY_AND_ASSIGN(PepperFileSystemHost);
78 }; 80 };
79 81
80 } // namespace content 82 } // namespace content
81 83
82 #endif // CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_ 84 #endif // CONTENT_RENDERER_PEPPER_PEPPER_FILE_SYSTEM_HOST_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_file_ref_renderer_host.h ('k') | content/renderer/pepper/pepper_file_system_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698