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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents/retargeting_details.h
diff --git a/chrome/browser/tab_contents/retargeting_details.h b/chrome/browser/tab_contents/retargeting_details.h
deleted file mode 100644
index de34aae650e9357df03bf5143284712c7f839750..0000000000000000000000000000000000000000
--- a/chrome/browser/tab_contents/retargeting_details.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_
-#define CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_
-
-#include <stdint.h>
-
-#include "url/gurl.h"
-
-namespace content {
-class WebContents;
-}
-
-// Details sent for NOTIFICATION_RETARGETING.
-struct RetargetingDetails {
- // The source tab contents.
- content::WebContents* source_web_contents;
-
- // The RenderProcessHost id of the source render frame from which the
- // retargeting was triggered.
- int source_render_process_id;
-
- // The routing id of the source render frame from which the retargeting was
- // triggered.
- int64_t source_render_frame_id;
-
- // The target URL.
- GURL target_url;
-
- // The target tab contents.
- content::WebContents* target_web_contents;
-
- // True if the target_web_contents is not yet inserted into a tab strip.
- bool not_yet_in_tabstrip;
-};
-
-#endif // CHROME_BROWSER_TAB_CONTENTS_RETARGETING_DETAILS_H_
« 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