| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 // Copyright 2016 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_SAFE_BROWSING_SAFE_BROWSING_NAVIGATION_OBSERVER_H_ | 
|  | 6 #define CHROME_BROWSER_SAFE_BROWSING_SAFE_BROWSING_NAVIGATION_OBSERVER_H_ | 
|  | 7 | 
|  | 8 #include "base/supports_user_data.h" | 
|  | 9 #include "content/public/browser/web_contents_observer.h" | 
|  | 10 #include "url/gurl.h" | 
|  | 11 | 
|  | 12 namespace content { | 
|  | 13 class NavigationHandle; | 
|  | 14 struct ResourceRedirectDetails; | 
|  | 15 } | 
|  | 16 | 
|  | 17 namespace safe_browsing { | 
|  | 18 class SafeBrowsingNavigationObserverManager; | 
|  | 19 | 
|  | 20 // Struct to record the details of a navigation event for any frames. | 
|  | 21 // This information will be used to fill |url_chain| field in safe browsing | 
|  | 22 // download pings. | 
|  | 23 struct NavigationEvent { | 
|  | 24   NavigationEvent(); | 
|  | 25   NavigationEvent(NavigationEvent&& nav_event); | 
|  | 26   NavigationEvent& operator=(NavigationEvent&& nav_event); | 
|  | 27   ~NavigationEvent(); | 
|  | 28 | 
|  | 29   GURL source_url;    // URL that caused this navigation to occur. | 
|  | 30   int source_tab_id;  // Which tab the above source_url is in. Tab ID is | 
|  | 31                       // returned by SessionTabHelper::IdForTab. This ID is | 
|  | 32                       // immutable for a given tab and unique across Chrome | 
|  | 33                       // within the current session. | 
|  | 34 | 
|  | 35   GURL target_url;    // The original request URL of this navigation. | 
|  | 36   int target_tab_id;  // Which tab this target url is in. | 
|  | 37 | 
|  | 38   int frame_id;  // Frame tree node ID of the frame where this navigation takes | 
|  | 39                  // place. | 
|  | 40   GURL main_frame_url;  // Main frame url of the source_url. Can be the same | 
|  | 41                         // as source url, if source_url was loaded in main | 
|  | 42                         // frame. | 
|  | 43 | 
|  | 44   base::Time timestamp;  // Timestamp of last time this object is updated. | 
|  | 45 | 
|  | 46   bool is_user_initiated;  // browser_initiated || has_user_gesture. | 
|  | 47   bool has_committed; | 
|  | 48   bool has_server_redirect; | 
|  | 49   GURL server_redirect_url;  // Last server redirect url in server redirect | 
|  | 50                              // chain. In the absence of server redirect, this | 
|  | 51                              // field will be empty. | 
|  | 52 }; | 
|  | 53 | 
|  | 54 // Structure to keep tracks of resolved IP address of a host. | 
|  | 55 struct ResolvedIPAddress { | 
|  | 56   ResolvedIPAddress() : timestamp(base::Time::Now()), ip() {} | 
|  | 57   ResolvedIPAddress(base::Time timestamp, const std::string& ip) | 
|  | 58       : timestamp(timestamp), ip(ip) {} | 
|  | 59   base::Time timestamp;  // Timestamp of when we get the resolved IP. | 
|  | 60   std::string ip;        // Resolved IP address | 
|  | 61 }; | 
|  | 62 | 
|  | 63 // Observes the navigation events for a single WebContents (both main-frame | 
|  | 64 // and sub-frame navigations) | 
|  | 65 class SafeBrowsingNavigationObserver : public base::SupportsUserData::Data, | 
|  | 66                                        public content::WebContentsObserver { | 
|  | 67  public: | 
|  | 68   static void MaybeCreateForWebContents(content::WebContents* web_contents); | 
|  | 69   static SafeBrowsingNavigationObserver* FromWebContents( | 
|  | 70       content::WebContents* web_contents); | 
|  | 71 | 
|  | 72   SafeBrowsingNavigationObserver( | 
|  | 73       content::WebContents* contents, | 
|  | 74       const scoped_refptr<SafeBrowsingNavigationObserverManager>& manager); | 
|  | 75 | 
|  | 76   ~SafeBrowsingNavigationObserver() override; | 
|  | 77 | 
|  | 78  private: | 
|  | 79   typedef std::unordered_map<content::NavigationHandle*, NavigationEvent> | 
|  | 80       NavigationHandleMap; | 
|  | 81 | 
|  | 82   // content::WebContentsObserver: | 
|  | 83   void DidStartNavigation( | 
|  | 84       content::NavigationHandle* navigation_handle) override; | 
|  | 85   void DidRedirectNavigation( | 
|  | 86       content::NavigationHandle* navigation_handle) override; | 
|  | 87   void DidFinishNavigation( | 
|  | 88       content::NavigationHandle* navigation_handle) override; | 
|  | 89   void DidGetResourceResponseStart( | 
|  | 90       const content::ResourceRequestDetails& details) override; | 
|  | 91   void DidGetUserInteraction(const blink::WebInputEvent::Type type) override; | 
|  | 92   void WebContentsDestroyed() override; | 
|  | 93 | 
|  | 94   // Map keyed on NavigationHandle* to keep track of all the ongoing navigation | 
|  | 95   // events. NavigationHandle pointers are owned by RenderFrameHost. Since a | 
|  | 96   // NavigationHandle object will be destructed after navigation is done, | 
|  | 97   // corresponding entry in this map will be removed from navigation_handle_map_ | 
|  | 98   // and added to navigation_map_ at the end of DidFinishNavigation(...). | 
|  | 99   NavigationHandleMap navigation_handle_map_; | 
|  | 100   scoped_refptr<SafeBrowsingNavigationObserverManager> manager_; | 
|  | 101   // If the observed WebContents just got an user gesture. | 
|  | 102   bool has_user_gesture_; | 
|  | 103   base::Time last_user_gesture_timestamp_; | 
|  | 104   DISALLOW_COPY_AND_ASSIGN(SafeBrowsingNavigationObserver); | 
|  | 105 }; | 
|  | 106 | 
|  | 107 }  // namespace safe_browsing | 
|  | 108 | 
|  | 109 #endif  // CHROME_BROWSER_SAFE_BROWSING_SAFE_BROWSING_NAVIGATION_OBSERVER_H_ | 
| OLD | NEW | 
|---|