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_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
444 virtual SessionStorageNamespace* GetSessionStorageNamespace( | 444 virtual SessionStorageNamespace* GetSessionStorageNamespace( |
445 SiteInstance* instance); | 445 SiteInstance* instance); |
446 | 446 |
447 // Returns the FrameTree the render view should use. Guaranteed to be constant | 447 // Returns the FrameTree the render view should use. Guaranteed to be constant |
448 // for the lifetime of the render view. | 448 // for the lifetime of the render view. |
449 // | 449 // |
450 // TODO(ajwong): Remove once the main frame RenderFrameHost is no longer | 450 // TODO(ajwong): Remove once the main frame RenderFrameHost is no longer |
451 // created by the RenderViewHost. | 451 // created by the RenderViewHost. |
452 virtual FrameTree* GetFrameTree(); | 452 virtual FrameTree* GetFrameTree(); |
453 | 453 |
454 // Indicates whether the RenderViewHostDelegate is associated with a guest | |
455 // renderer process. | |
456 virtual bool IsGuest() const; | |
jochen (gone - plz use gerrit)
2013/12/03 08:55:21
why is this on RVHD? I would expect this on RPH?
Fady Samuel
2013/12/03 15:31:27
Oops, this is unnecessary code I added while tryin
| |
457 | |
454 protected: | 458 protected: |
455 virtual ~RenderViewHostDelegate() {} | 459 virtual ~RenderViewHostDelegate() {} |
456 }; | 460 }; |
457 | 461 |
458 } // namespace content | 462 } // namespace content |
459 | 463 |
460 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 464 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
OLD | NEW |