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

Side by Side Diff: webkit/plugins/ppapi/ppb_file_ref_impl.h

Issue 18191004: webkit: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync+rebase Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/ppapi_webplugin_impl.cc ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/memory/linked_ptr.h" 12 #include "base/memory/linked_ptr.h"
13 #include "googleurl/src/gurl.h"
14 #include "ppapi/c/pp_file_info.h" 13 #include "ppapi/c/pp_file_info.h"
15 #include "ppapi/c/ppb_file_ref.h" 14 #include "ppapi/c/ppb_file_ref.h"
16 #include "ppapi/shared_impl/ppb_file_ref_shared.h" 15 #include "ppapi/shared_impl/ppb_file_ref_shared.h"
17 #include "ppapi/shared_impl/scoped_pp_resource.h" 16 #include "ppapi/shared_impl/scoped_pp_resource.h"
18 #include "ppapi/shared_impl/var.h" 17 #include "ppapi/shared_impl/var.h"
18 #include "url/gurl.h"
19 #include "webkit/plugins/webkit_plugins_export.h" 19 #include "webkit/plugins/webkit_plugins_export.h"
20 20
21 namespace webkit { 21 namespace webkit {
22 namespace ppapi { 22 namespace ppapi {
23 23
24 using ::ppapi::StringVar; 24 using ::ppapi::StringVar;
25 25
26 class PPB_FileSystem_Impl; 26 class PPB_FileSystem_Impl;
27 27
28 class WEBKIT_PLUGINS_EXPORT PPB_FileRef_Impl 28 class WEBKIT_PLUGINS_EXPORT PPB_FileRef_Impl
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // return the identical string object every time it is requested. 118 // return the identical string object every time it is requested.
119 scoped_refptr<StringVar> external_path_var_; 119 scoped_refptr<StringVar> external_path_var_;
120 120
121 DISALLOW_COPY_AND_ASSIGN(PPB_FileRef_Impl); 121 DISALLOW_COPY_AND_ASSIGN(PPB_FileRef_Impl);
122 }; 122 };
123 123
124 } // namespace ppapi 124 } // namespace ppapi
125 } // namespace webkit 125 } // namespace webkit
126 126
127 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_ 127 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FILE_REF_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppapi_webplugin_impl.cc ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698