diff options
author | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 18:34:40 +0000 |
---|---|---|
committer | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 18:34:40 +0000 |
commit | ea505a9d49ef9770557423d2e4525d8fb91eab69 (patch) | |
tree | 7ace0236f95b3d101fd0e392d0506845c23d8223 /ppapi/cpp/dev/directory_entry_dev.h | |
parent | 054498a7c3951d4047812ed918c06d46b3daa6ee (diff) | |
download | chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.zip chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.gz chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.bz2 |
Migrating PPB_FileIO_Dev, PPB_FileRef_Dev, and PPB_FileSystem_Dev dependencies to PPB_FileIO, PPB_FileRef, and PPB_FileSystem.
Also fixed some lint errors.
Review URL: http://codereview.chromium.org/7248047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91733 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/dev/directory_entry_dev.h')
-rw-r--r-- | ppapi/cpp/dev/directory_entry_dev.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ppapi/cpp/dev/directory_entry_dev.h b/ppapi/cpp/dev/directory_entry_dev.h index 0e902f7..6b91ebf 100644 --- a/ppapi/cpp/dev/directory_entry_dev.h +++ b/ppapi/cpp/dev/directory_entry_dev.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,7 +6,7 @@ #define PPAPI_CPP_DEV_DIRECTORY_ENTRY_DEV_H_ #include "ppapi/c/dev/ppb_directory_reader_dev.h" -#include "ppapi/cpp/dev/file_ref_dev.h" +#include "ppapi/cpp/file_ref.h" namespace pp { @@ -22,10 +22,10 @@ class DirectoryEntry_Dev { bool is_null() const { return !data_.file_ref; } // Returns the FileRef held by this DirectoryEntry. - FileRef_Dev file_ref() const { return FileRef_Dev(data_.file_ref); } + FileRef file_ref() const { return FileRef(data_.file_ref); } // Returns the type of the file referenced by this DirectoryEntry. - PP_FileType_Dev file_type() const { return data_.file_type; } + PP_FileType file_type() const { return data_.file_type; } private: friend class DirectoryReader_Dev; |