| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ | 5 #ifndef CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ |
| 6 #define CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ | 6 #define CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/timer/timer.h" | 9 #include "base/timer/timer.h" |
| 10 #include "content/public/renderer/render_frame_observer.h" | 10 #include "content/public/renderer/render_frame_observer.h" |
| 11 | 11 |
| 12 class GURL; | 12 class GURL; |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 class WebLocalFrame; | 15 class WebLocalFrame; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace gfx { | 18 namespace gfx { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // Have the same lifetime as us. | 106 // Have the same lifetime as us. |
| 107 translate::TranslateHelper* translate_helper_; | 107 translate::TranslateHelper* translate_helper_; |
| 108 safe_browsing::PhishingClassifierDelegate* phishing_classifier_; | 108 safe_browsing::PhishingClassifierDelegate* phishing_classifier_; |
| 109 | 109 |
| 110 PageInfo page_info_; | 110 PageInfo page_info_; |
| 111 | 111 |
| 112 DISALLOW_COPY_AND_ASSIGN(ChromeRenderFrameObserver); | 112 DISALLOW_COPY_AND_ASSIGN(ChromeRenderFrameObserver); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 #endif // CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ | 115 #endif // CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ |
| OLD | NEW |