| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index 0aca1de51ce5527f9a235daa110b2674811a9943..adb1019fcb95f0a915cbe3c3c25e7a1767ecca6b 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -54,6 +54,7 @@ class DownloadItem;
|
| class GeolocationDispatcherHost;
|
| class InterstitialPageImpl;
|
| class JavaScriptDialogManager;
|
| +class ManifestManagerHost;
|
| class MidiDispatcherHost;
|
| class PowerSaveBlocker;
|
| class RenderViewHost;
|
| @@ -331,6 +332,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| virtual void StopFinding(StopFindAction action) OVERRIDE;
|
| virtual void InsertCSS(const std::string& css) OVERRIDE;
|
| virtual bool WasRecentlyAudible() OVERRIDE;
|
| + virtual void GetManifest(const GetManifestCallback&) OVERRIDE;
|
| #if defined(OS_ANDROID)
|
| virtual base::android::ScopedJavaLocalRef<jobject> GetJavaWebContents()
|
| OVERRIDE;
|
| @@ -1228,6 +1230,8 @@ class CONTENT_EXPORT WebContentsImpl
|
| scoped_ptr<ScreenOrientationDispatcherHost>
|
| screen_orientation_dispatcher_host_;
|
|
|
| + scoped_ptr<ManifestManagerHost> manifest_manager_host_;
|
| +
|
| // The accessibility mode for all frames. This is queried when each frame
|
| // is created, and broadcast to all frames when it changes.
|
| AccessibilityMode accessibility_mode_;
|
|
|