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

Side by Side Diff: chrome/renderer/safe_browsing/malware_dom_details.h

Issue 8699008: Use callback_forward.h instead of callback.h where possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove callback_forward.h, which was committed as part of a separate CL. Created 9 years 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 | « chrome/common/service_process_util.h ('k') | chrome_frame/sync_msg_reply_dispatcher.h » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 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 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 // MalwareDOMDetails iterates over a document's frames and gathers 5 // MalwareDOMDetails iterates over a document's frames and gathers
6 // interesting URLs such as those of scripts and frames. When done, it sends 6 // interesting URLs such as those of scripts and frames. When done, it sends
7 // them to the MalwareDetails that requested them. 7 // them to the MalwareDetails that requested them.
8 8
9 #ifndef CHROME_RENDERER_SAFE_BROWSING_MALWARE_DOM_DETAILS_H_ 9 #ifndef CHROME_RENDERER_SAFE_BROWSING_MALWARE_DOM_DETAILS_H_
10 #define CHROME_RENDERER_SAFE_BROWSING_MALWARE_DOM_DETAILS_H_ 10 #define CHROME_RENDERER_SAFE_BROWSING_MALWARE_DOM_DETAILS_H_
11 11
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/basictypes.h" 15 #include "base/basictypes.h"
16 #include "base/callback.h"
17 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
18 #include "base/task.h" 17 #include "base/task.h"
19 #include "content/public/renderer/render_view_observer.h" 18 #include "content/public/renderer/render_view_observer.h"
20 19
21 namespace WebKit { 20 namespace WebKit {
22 class WebElement; 21 class WebElement;
23 } 22 }
24 23
25 struct SafeBrowsingHostMsg_MalwareDOMDetails_Node; 24 struct SafeBrowsingHostMsg_MalwareDOMDetails_Node;
26 25
(...skipping 29 matching lines...) Expand all
56 const WebKit::WebElement& element, 55 const WebKit::WebElement& element,
57 SafeBrowsingHostMsg_MalwareDOMDetails_Node* parent_node, 56 SafeBrowsingHostMsg_MalwareDOMDetails_Node* parent_node,
58 std::vector<SafeBrowsingHostMsg_MalwareDOMDetails_Node>* resources); 57 std::vector<SafeBrowsingHostMsg_MalwareDOMDetails_Node>* resources);
59 58
60 DISALLOW_COPY_AND_ASSIGN(MalwareDOMDetails); 59 DISALLOW_COPY_AND_ASSIGN(MalwareDOMDetails);
61 }; 60 };
62 61
63 } // namespace safe_browsing 62 } // namespace safe_browsing
64 63
65 #endif // CHROME_RENDERER_SAFE_BROWSING_MALWARE_DOM_DETAILS_H_ 64 #endif // CHROME_RENDERER_SAFE_BROWSING_MALWARE_DOM_DETAILS_H_
OLDNEW
« no previous file with comments | « chrome/common/service_process_util.h ('k') | chrome_frame/sync_msg_reply_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698