Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: content/browser/renderer_host/render_view_host_delegate.h

Issue 78303005: ContentSettings API should not interact with <webview> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698