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

Side by Side Diff: ppapi/proxy/uma_private_resource.h

Issue 61643022: Proxy private UMA pepper interface for out-of-process and NaCl plugins. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove errant file, fix comment typo Created 7 years 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4 //
yzshen1 2013/12/04 19:32:51 redundant line?
elijahtaylor1 2013/12/21 02:26:21 Done.
5
6 #ifndef PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_
7 #define PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_
8
9 #include "ppapi/proxy/connection.h"
10 #include "ppapi/proxy/plugin_resource.h"
11 #include "ppapi/proxy/ppapi_proxy_export.h"
12 #include "ppapi/thunk/ppb_uma_singleton_api.h"
13
14 namespace ppapi {
15
16 namespace proxy {
17
18 class PPAPI_PROXY_EXPORT UMAPrivateResource
19 : public PluginResource,
20 public thunk::PPB_UMA_Singleton_API {
21 public:
22 UMAPrivateResource(Connection connection, PP_Instance instance);
23 virtual ~UMAPrivateResource();
24
25 // Resource overrides.
26 virtual thunk::PPB_UMA_Singleton_API* AsPPB_UMA_Singleton_API() OVERRIDE;
27
28 // PPB_UMA_Singleton_API implementation.
29 virtual void HistogramCustomTimes(PP_Instance instance,
30 struct PP_Var name,
31 int64_t sample,
32 int64_t min,
33 int64_t max,
34 uint32_t bucket_count) OVERRIDE;
35
36 virtual void HistogramCustomCounts(PP_Instance instance,
37 struct PP_Var name,
38 int32_t sample,
39 int32_t min,
40 int32_t max,
41 uint32_t bucket_count) OVERRIDE;
42
43 virtual void HistogramEnumeration(PP_Instance instance,
44 struct PP_Var name,
45 int32_t sample,
46 int32_t boundary_value) OVERRIDE;
47
48 private:
49 DISALLOW_COPY_AND_ASSIGN(UMAPrivateResource);
50 };
51
52 } // namespace proxy
53 } // namespace ppapi
54
55 #endif // PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698