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

Side by Side Diff: chrome/common/render_messages.h

Issue 1006753003: Add time from navigation_start to NTP LogEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <stdint.h> 6 #include <stdint.h>
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 584
585 #if defined(OS_ANDROID) 585 #if defined(OS_ANDROID)
586 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveMetaTagContent, 586 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveMetaTagContent,
587 bool /* success */, 587 bool /* success */,
588 std::string /* tag_name */, 588 std::string /* tag_name */,
589 std::string /* tag_content */, 589 std::string /* tag_content */,
590 GURL /* expected_url */) 590 GURL /* expected_url */)
591 #endif // defined(OS_ANDROID) 591 #endif // defined(OS_ANDROID)
592 592
593 // Logs events from InstantExtended New Tab Pages. 593 // Logs events from InstantExtended New Tab Pages.
594 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent, 594 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogEvent,
595 int /* page_seq_no */, 595 int /* page_seq_no */,
596 NTPLoggingEventType /* event */) 596 NTPLoggingEventType /* event */,
597 int64 /* time */)
Will Harris 2015/03/16 17:39:03 delta should always be positive, can this be a uin
fserb 2015/03/16 17:49:38 Done.
597 598
598 // Logs an impression on one of the Most Visited tile on the InstantExtended 599 // Logs an impression on one of the Most Visited tile on the InstantExtended
599 // New Tab Page. 600 // New Tab Page.
600 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedImpression, 601 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedImpression,
601 int /* page_seq_no */, 602 int /* page_seq_no */,
602 int /* position */, 603 int /* position */,
603 base::string16 /* provider */) 604 base::string16 /* provider */)
604 605
605 // Logs a navigation on one of the Most Visited tile on the InstantExtended 606 // Logs a navigation on one of the Most Visited tile on the InstantExtended
606 // New Tab Page. 607 // New Tab Page.
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 678
678 // Tells the browser process whether the web page wants the banner to be shown. 679 // Tells the browser process whether the web page wants the banner to be shown.
679 // This is a reply from ChromeViewMsg_AppBannerPromptRequest. 680 // This is a reply from ChromeViewMsg_AppBannerPromptRequest.
680 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_AppBannerPromptReply, 681 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_AppBannerPromptReply,
681 int /* request_id */, 682 int /* request_id */,
682 blink::WebAppBannerPromptReply /* reply */) 683 blink::WebAppBannerPromptReply /* reply */)
683 684
684 // Sent by the renderer to indicate that a fields trial has been activated. 685 // Sent by the renderer to indicate that a fields trial has been activated.
685 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, 686 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
686 std::string /* name */) 687 std::string /* name */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698