OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 virtual const GURL& GetURL() const OVERRIDE; | 174 virtual const GURL& GetURL() const OVERRIDE; |
175 virtual const GURL& GetVisibleURL() const OVERRIDE; | 175 virtual const GURL& GetVisibleURL() const OVERRIDE; |
176 virtual const GURL& GetLastCommittedURL() const OVERRIDE; | 176 virtual const GURL& GetLastCommittedURL() const OVERRIDE; |
177 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE; | 177 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE; |
178 virtual RenderFrameHost* GetMainFrame() OVERRIDE; | 178 virtual RenderFrameHost* GetMainFrame() OVERRIDE; |
179 virtual RenderFrameHost* GetFocusedFrame() OVERRIDE; | 179 virtual RenderFrameHost* GetFocusedFrame() OVERRIDE; |
180 virtual void ForEachFrame( | 180 virtual void ForEachFrame( |
181 const base::Callback<void(RenderFrameHost*)>& on_frame) OVERRIDE; | 181 const base::Callback<void(RenderFrameHost*)>& on_frame) OVERRIDE; |
182 virtual void SendToAllFrames(IPC::Message* message) OVERRIDE; | 182 virtual void SendToAllFrames(IPC::Message* message) OVERRIDE; |
183 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE; | 183 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE; |
184 virtual WebContents* GetEmbedderWebContents() const OVERRIDE; | |
185 virtual int GetEmbeddedInstanceID() const OVERRIDE; | |
186 virtual int GetRoutingID() const OVERRIDE; | 184 virtual int GetRoutingID() const OVERRIDE; |
187 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE; | 185 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE; |
188 virtual RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const | 186 virtual RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const |
189 OVERRIDE; | 187 OVERRIDE; |
190 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; | 188 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; |
191 virtual WebUI* GetWebUI() const OVERRIDE; | 189 virtual WebUI* GetWebUI() const OVERRIDE; |
192 virtual WebUI* GetCommittedWebUI() const OVERRIDE; | 190 virtual WebUI* GetCommittedWebUI() const OVERRIDE; |
193 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; | 191 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; |
194 virtual const std::string& GetUserAgentOverride() const OVERRIDE; | 192 virtual const std::string& GetUserAgentOverride() const OVERRIDE; |
195 #if defined(OS_WIN) | 193 #if defined(OS_WIN) |
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 bool last_dialog_suppressed_; | 1096 bool last_dialog_suppressed_; |
1099 | 1097 |
1100 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1098 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
1101 | 1099 |
1102 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1100 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1103 }; | 1101 }; |
1104 | 1102 |
1105 } // namespace content | 1103 } // namespace content |
1106 | 1104 |
1107 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1105 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |