OLD | NEW |
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 #include "ppapi/shared_impl/ppb_file_ref_shared.h" | 5 #include "ppapi/shared_impl/ppb_file_ref_shared.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "ppapi/shared_impl/var.h" | 8 #include "ppapi/shared_impl/var.h" |
9 | 9 |
10 namespace ppapi { | 10 namespace ppapi { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 path_var_ = new StringVar(create_info_.path); | 45 path_var_ = new StringVar(create_info_.path); |
46 } | 46 } |
47 return path_var_->GetPPVar(); | 47 return path_var_->GetPPVar(); |
48 } | 48 } |
49 | 49 |
50 const PPB_FileRef_CreateInfo& PPB_FileRef_Shared::GetCreateInfo() const { | 50 const PPB_FileRef_CreateInfo& PPB_FileRef_Shared::GetCreateInfo() const { |
51 return create_info_; | 51 return create_info_; |
52 } | 52 } |
53 | 53 |
54 } // namespace ppapi | 54 } // namespace ppapi |
OLD | NEW |