| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 void SetDelegate(WebContentsDelegate* delegate) override; | 227 void SetDelegate(WebContentsDelegate* delegate) override; |
| 228 NavigationControllerImpl& GetController() override; | 228 NavigationControllerImpl& GetController() override; |
| 229 const NavigationControllerImpl& GetController() const override; | 229 const NavigationControllerImpl& GetController() const override; |
| 230 BrowserContext* GetBrowserContext() const override; | 230 BrowserContext* GetBrowserContext() const override; |
| 231 const GURL& GetURL() const override; | 231 const GURL& GetURL() const override; |
| 232 const GURL& GetVisibleURL() const override; | 232 const GURL& GetVisibleURL() const override; |
| 233 const GURL& GetLastCommittedURL() const override; | 233 const GURL& GetLastCommittedURL() const override; |
| 234 RenderProcessHost* GetRenderProcessHost() const override; | 234 RenderProcessHost* GetRenderProcessHost() const override; |
| 235 RenderFrameHostImpl* GetMainFrame() override; | 235 RenderFrameHostImpl* GetMainFrame() override; |
| 236 RenderFrameHostImpl* GetFocusedFrame() override; | 236 RenderFrameHostImpl* GetFocusedFrame() override; |
| 237 RenderFrameHostImpl* FindFrameByFrameTreeNodeID( |
| 238 int frame_tree_node_id) override; |
| 237 void ForEachFrame( | 239 void ForEachFrame( |
| 238 const base::Callback<void(RenderFrameHost*)>& on_frame) override; | 240 const base::Callback<void(RenderFrameHost*)>& on_frame) override; |
| 239 void SendToAllFrames(IPC::Message* message) override; | 241 void SendToAllFrames(IPC::Message* message) override; |
| 240 RenderViewHostImpl* GetRenderViewHost() const override; | 242 RenderViewHostImpl* GetRenderViewHost() const override; |
| 241 int GetRoutingID() const override; | 243 int GetRoutingID() const override; |
| 242 RenderWidgetHostView* GetRenderWidgetHostView() const override; | 244 RenderWidgetHostView* GetRenderWidgetHostView() const override; |
| 243 void ClosePage() override; | 245 void ClosePage() override; |
| 244 RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const override; | 246 RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const override; |
| 245 SkColor GetThemeColor() const override; | 247 SkColor GetThemeColor() const override; |
| 246 WebUI* CreateSubframeWebUI(const GURL& url, | 248 WebUI* CreateSubframeWebUI(const GURL& url, |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1328 // Adds/removes a callback called on creation of each new WebContents. | 1330 // Adds/removes a callback called on creation of each new WebContents. |
| 1329 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1331 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1330 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1332 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1331 | 1333 |
| 1332 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1334 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1333 }; | 1335 }; |
| 1334 | 1336 |
| 1335 } // namespace content | 1337 } // namespace content |
| 1336 | 1338 |
| 1337 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1339 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |