OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "webkit/plugins/ppapi/ppb_uma_private_impl.h" | 5 #include "content/renderer/pepper/ppb_uma_private_impl.h" |
6 | 6 |
7 #include "base/metrics/histogram.h" | 7 #include "base/metrics/histogram.h" |
8 #include "ppapi/c/pp_var.h" | 8 #include "ppapi/c/pp_var.h" |
9 #include "ppapi/c/private/ppb_uma_private.h" | 9 #include "ppapi/c/private/ppb_uma_private.h" |
10 #include "ppapi/shared_impl/var.h" | 10 #include "ppapi/shared_impl/var.h" |
11 #include "webkit/glue/webkit_glue.h" | 11 #include "webkit/glue/webkit_glue.h" |
12 | 12 |
13 using ppapi::StringVar; | 13 using ppapi::StringVar; |
14 | 14 |
15 namespace webkit { | 15 namespace webkit { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 &HistogramEnumeration, | 91 &HistogramEnumeration, |
92 }; | 92 }; |
93 | 93 |
94 // static | 94 // static |
95 const PPB_UMA_Private* PPB_UMA_Private_Impl::GetInterface() { | 95 const PPB_UMA_Private* PPB_UMA_Private_Impl::GetInterface() { |
96 return &ppb_uma; | 96 return &ppb_uma; |
97 } | 97 } |
98 | 98 |
99 } // namespace ppapi | 99 } // namespace ppapi |
100 } // namespace webkit | 100 } // namespace webkit |
OLD | NEW |