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

Side by Side Diff: chrome_frame/test/perf/chrome_frame_perftest.cc

Issue 6162004: Fix perf redness caused by an event name change. ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome_frame/test/perf/chrome_frame_perftest.h" 4 #include "chrome_frame/test/perf/chrome_frame_perftest.h"
5 5
6 #include <atlwin.h> 6 #include <atlwin.h>
7 #include <atlhost.h> 7 #include <atlhost.h>
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 #include <string> 10 #include <string>
(...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1417 browser_main_loop_monitor[i].set_start_event("BrowserMain"); 1417 browser_main_loop_monitor[i].set_start_event("BrowserMain");
1418 browser_main_loop_monitor[i].set_end_event("BrowserMain:MESSAGE_LOOP"); 1418 browser_main_loop_monitor[i].set_end_event("BrowserMain:MESSAGE_LOOP");
1419 1419
1420 automation_provider_start_monitor[i].set_start_event("BrowserMain"); 1420 automation_provider_start_monitor[i].set_start_event("BrowserMain");
1421 automation_provider_start_monitor[i].set_end_event( 1421 automation_provider_start_monitor[i].set_end_event(
1422 "AutomationProvider::AutomationProvider"); 1422 "AutomationProvider::AutomationProvider");
1423 1423
1424 automation_provider_connect_monitor[i].set_start_event( 1424 automation_provider_connect_monitor[i].set_start_event(
1425 "AutomationProvider::AutomationProvider"); 1425 "AutomationProvider::AutomationProvider");
1426 automation_provider_connect_monitor[i].set_end_event( 1426 automation_provider_connect_monitor[i].set_end_event(
1427 "AutomationProvider::ConnectToChannel"); 1427 "AutomationProvider::InitializeChannel");
1428 1428
1429 external_tab_navigate_monitor[i].set_interesting_event( 1429 external_tab_navigate_monitor[i].set_interesting_event(
1430 "ExternalTabContainer::Navigate"); 1430 "ExternalTabContainer::Navigate");
1431 1431
1432 renderer_main_monitor[i].set_start_event("ExternalTabContainer::Navigate"); 1432 renderer_main_monitor[i].set_start_event("ExternalTabContainer::Navigate");
1433 renderer_main_monitor[i].set_end_event("RendererMain"); 1433 renderer_main_monitor[i].set_end_event("RendererMain");
1434 1434
1435 pre_read_chrome_monitor[i].set_interesting_event("PreReadImage"); 1435 pre_read_chrome_monitor[i].set_interesting_event("PreReadImage");
1436 1436
1437 ASSERT_HRESULT_SUCCEEDED(perf_session.Stop()); 1437 ASSERT_HRESULT_SUCCEEDED(perf_session.Stop());
(...skipping 19 matching lines...) Expand all
1457 PrintPerfTestResults(automation_provider_connect_monitor, kNumCycles, 1457 PrintPerfTestResults(automation_provider_connect_monitor, kNumCycles,
1458 "automationproviderconnect"); 1458 "automationproviderconnect");
1459 PrintPerfTestResults(external_tab_navigate_monitor, kNumCycles, 1459 PrintPerfTestResults(external_tab_navigate_monitor, kNumCycles,
1460 "externaltabnavigate"); 1460 "externaltabnavigate");
1461 PrintPerfTestResults(renderer_main_monitor, kNumCycles, 1461 PrintPerfTestResults(renderer_main_monitor, kNumCycles,
1462 "beginrenderermain"); 1462 "beginrenderermain");
1463 #ifdef NDEBUG 1463 #ifdef NDEBUG
1464 PrintPerfTestResults(pre_read_chrome_monitor, kNumCycles, "PreReadImage"); 1464 PrintPerfTestResults(pre_read_chrome_monitor, kNumCycles, "PreReadImage");
1465 #endif // NDEBUG 1465 #endif // NDEBUG
1466 } 1466 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698