mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Expose tracing functionality via new cef_trace.h and cef_trace_event.h headers (issue #711).
- Add about:tracing UI support (issue #711). - Avoid unnecessary string type conversions for values and process messages. - Add support for a 'note' attribute in patch.cfg. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@865 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -190,6 +190,22 @@ gboolean ZoomResetActivated(GtkWidget* widget) {
|
||||
return FALSE; // Don't stop this message.
|
||||
}
|
||||
|
||||
// Callback for Debug > Begin Tracing menu item.
|
||||
gboolean BeginTracingActivated(GtkWidget* widget) {
|
||||
if (g_handler.get())
|
||||
g_handler->BeginTracing();
|
||||
|
||||
return FALSE; // Don't stop this message.
|
||||
}
|
||||
|
||||
// Callback for Debug > End Tracing menu item.
|
||||
gboolean EndTracingActivated(GtkWidget* widget) {
|
||||
if (g_handler.get())
|
||||
g_handler->EndTracing();
|
||||
|
||||
return FALSE; // Don't stop this message.
|
||||
}
|
||||
|
||||
// Callback for when you click the back button.
|
||||
void BackButtonClicked(GtkButton* button) {
|
||||
if (g_handler.get() && g_handler->GetBrowserId())
|
||||
@@ -283,6 +299,10 @@ GtkWidget* CreateMenuBar() {
|
||||
G_CALLBACK(ZoomOutActivated));
|
||||
AddMenuEntry(debug_menu, "Zoom Reset",
|
||||
G_CALLBACK(ZoomResetActivated));
|
||||
AddMenuEntry(debug_menu, "Begin Tracing",
|
||||
G_CALLBACK(BeginTracingActivated));
|
||||
AddMenuEntry(debug_menu, "End Tracing",
|
||||
G_CALLBACK(EndTracingActivated));
|
||||
return menu_bar;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user