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

Side by Side Diff: chrome/browser/tab_contents/retargeting_details.h

Issue 2724433002: Remove the retargeting notification (Closed)
Patch Set: Remove comments in safe browsing tests Created 3 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
(Empty)
1 // Copyright (c) 2011 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
5 #ifndef CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_
7
8 #include <stdint.h>
9
10 #include "url/gurl.h"
11
12 namespace content {
13 class WebContents;
14 }
15
16 // Details sent for NOTIFICATION_RETARGETING.
17 struct RetargetingDetails {
18 // The source tab contents.
19 content::WebContents* source_web_contents;
20
21 // The RenderProcessHost id of the source render frame from which the
22 // retargeting was triggered.
23 int source_render_process_id;
24
25 // The routing id of the source render frame from which the retargeting was
26 // triggered.
27 int64_t source_render_frame_id;
28
29 // The target URL.
30 GURL target_url;
31
32 // The target tab contents.
33 content::WebContents* target_web_contents;
34
35 // True if the target_web_contents is not yet inserted into a tab strip.
36 bool not_yet_in_tabstrip;
37 };
38
39 #endif // CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_navigation_observer_manager.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698