| OLD | NEW |
| 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 #ifndef CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ | 5 #ifndef CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ |
| 6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ | 6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/task.h" | 15 #include "base/task.h" |
| 16 #include "content/public/renderer/render_view_observer.h" | 16 #include "content/public/renderer/render_view_observer.h" |
| 17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPermissionClient.h
" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPermissionClient.h
" |
| 19 | 19 |
| 20 class ChromeRenderProcessObserver; | 20 class ChromeRenderProcessObserver; |
| 21 class ContentSettingsObserver; | 21 class ContentSettingsObserver; |
| 22 class DomAutomationController; | 22 class DomAutomationController; |
| 23 class ExtensionDispatcher; | 23 class ExtensionDispatcher; |
| 24 class ExternalHostBindings; | 24 class ExternalHostBindings; |
| 25 class FilePath; | |
| 26 class SkBitmap; | 25 class SkBitmap; |
| 27 class TranslateHelper; | 26 class TranslateHelper; |
| 28 struct ThumbnailScore; | 27 struct ThumbnailScore; |
| 29 struct ViewMsg_Navigate_Params; | |
| 30 | 28 |
| 31 namespace WebKit { | 29 namespace WebKit { |
| 32 class WebView; | 30 class WebView; |
| 33 } | 31 } |
| 34 namespace safe_browsing { | 32 namespace safe_browsing { |
| 35 class PhishingClassifierDelegate; | 33 class PhishingClassifierDelegate; |
| 36 } | 34 } |
| 37 | 35 |
| 38 namespace webkit_glue { | 36 namespace webkit_glue { |
| 39 class ImageResourceFetcher; | 37 class ImageResourceFetcher; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 typedef std::vector<linked_ptr<webkit_glue::ImageResourceFetcher> > | 215 typedef std::vector<linked_ptr<webkit_glue::ImageResourceFetcher> > |
| 218 ImageResourceFetcherList; | 216 ImageResourceFetcherList; |
| 219 | 217 |
| 220 // ImageResourceFetchers schedule via DownloadImage. | 218 // ImageResourceFetchers schedule via DownloadImage. |
| 221 ImageResourceFetcherList image_fetchers_; | 219 ImageResourceFetcherList image_fetchers_; |
| 222 | 220 |
| 223 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver); | 221 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver); |
| 224 }; | 222 }; |
| 225 | 223 |
| 226 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ | 224 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ |
| OLD | NEW |