| 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/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/timer/timer.h" | 9 #include "base/timer/timer.h" |
| 10 #include "chrome/common/prerender_types.h" | 10 #include "chrome/common/prerender_types.h" |
| 11 #include "content/public/renderer/render_frame_observer.h" | 11 #include "content/public/renderer/render_frame_observer.h" |
| 12 | 12 |
| 13 class GURL; | |
| 14 | |
| 15 namespace gfx { | 13 namespace gfx { |
| 16 class Size; | 14 class Size; |
| 17 } | 15 } |
| 18 | 16 |
| 19 namespace safe_browsing { | 17 namespace safe_browsing { |
| 20 class PhishingClassifierDelegate; | 18 class PhishingClassifierDelegate; |
| 21 } | 19 } |
| 22 | 20 |
| 23 namespace translate { | 21 namespace translate { |
| 24 class TranslateHelper; | 22 class TranslateHelper; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 base::TimeDelta delay); | 62 base::TimeDelta delay); |
| 65 | 63 |
| 66 // Have the same lifetime as us. | 64 // Have the same lifetime as us. |
| 67 translate::TranslateHelper* translate_helper_; | 65 translate::TranslateHelper* translate_helper_; |
| 68 safe_browsing::PhishingClassifierDelegate* phishing_classifier_; | 66 safe_browsing::PhishingClassifierDelegate* phishing_classifier_; |
| 69 | 67 |
| 70 DISALLOW_COPY_AND_ASSIGN(ChromeRenderFrameObserver); | 68 DISALLOW_COPY_AND_ASSIGN(ChromeRenderFrameObserver); |
| 71 }; | 69 }; |
| 72 | 70 |
| 73 #endif // CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ | 71 #endif // CHROME_RENDERER_CHROME_RENDER_FRAME_OBSERVER_H_ |
| OLD | NEW |