OLD | NEW |
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 #include "ppapi/proxy/raw_var_data.h" | 5 #include "ppapi/proxy/raw_var_data.h" |
6 | 6 |
7 #include <stack> | 7 #include <stack> |
8 | 8 |
9 #include "base/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
11 #include "ipc/ipc_message.h" | 11 #include "ipc/ipc_message.h" |
12 #include "ppapi/proxy/ppapi_param_traits.h" | 12 #include "ppapi/proxy/ppapi_param_traits.h" |
13 #include "ppapi/shared_impl/array_var.h" | 13 #include "ppapi/shared_impl/array_var.h" |
14 #include "ppapi/shared_impl/dictionary_var.h" | 14 #include "ppapi/shared_impl/dictionary_var.h" |
15 #include "ppapi/shared_impl/ppapi_globals.h" | 15 #include "ppapi/shared_impl/ppapi_globals.h" |
16 #include "ppapi/shared_impl/scoped_pp_var.h" | 16 #include "ppapi/shared_impl/scoped_pp_var.h" |
17 #include "ppapi/shared_impl/var.h" | 17 #include "ppapi/shared_impl/var.h" |
18 #include "ppapi/shared_impl/var_tracker.h" | 18 #include "ppapi/shared_impl/var_tracker.h" |
19 | 19 |
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 return false; | 631 return false; |
632 if (!m->ReadUInt32(iter, &value)) | 632 if (!m->ReadUInt32(iter, &value)) |
633 return false; | 633 return false; |
634 children_.push_back(make_pair(key, value)); | 634 children_.push_back(make_pair(key, value)); |
635 } | 635 } |
636 return true; | 636 return true; |
637 } | 637 } |
638 | 638 |
639 } // namespace proxy | 639 } // namespace proxy |
640 } // namespace ppapi | 640 } // namespace ppapi |
OLD | NEW |