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

Side by Side Diff: ppapi/cpp/private/instance_private.h

Issue 252663002: Track plugin input event latency (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: move InputEventPriavte interface to terfaces_ppb_private.h Created 6 years, 7 months 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
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 #ifndef PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ 5 #ifndef PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_
6 #define PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ 6 #define PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_
7 7
8 /** 8 /**
9 * @file 9 * @file
10 * Defines the API ... 10 * Defines the API ...
(...skipping 29 matching lines...) Expand all
40 40
41 /// See PPB_Instance_Private.GetWindowObject. 41 /// See PPB_Instance_Private.GetWindowObject.
42 VarPrivate GetWindowObject(); 42 VarPrivate GetWindowObject();
43 43
44 /// See PPB_Instance_Private.GetOwnerElementObject. 44 /// See PPB_Instance_Private.GetOwnerElementObject.
45 VarPrivate GetOwnerElementObject(); 45 VarPrivate GetOwnerElementObject();
46 46
47 /// See PPB_Instance.ExecuteScript. 47 /// See PPB_Instance.ExecuteScript.
48 VarPrivate ExecuteScript(const Var& script, Var* exception = NULL); 48 VarPrivate ExecuteScript(const Var& script, Var* exception = NULL);
49 49
50 /// See PPB_InputEventPrivate.StartTrackingLatency.
51 void StartTrackingLatency (PP_Instance instance);
dmichael (off chromium) 2014/05/08 21:47:07 Could you just put this inside InputEventPrivate a
Yufeng Shen (Slow to review) 2014/05/08 23:49:40 Done.
52
50 // @} 53 // @}
51 }; 54 };
52 55
53 } // namespace pp 56 } // namespace pp
54 57
55 /** 58 /**
56 * @} 59 * @}
57 * End addtogroup CPP 60 * End addtogroup CPP
58 */ 61 */
59 #endif // PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ 62 #endif // PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698