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

Unified Diff: content/public/browser/web_contents.h

Issue 19800005: Hide knowledge of webkit::ppapi::PluginDelegate from chrome. This is part of moving ppapi implement… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 months 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/web_contents.h
===================================================================
--- content/public/browser/web_contents.h (revision 212906)
+++ content/public/browser/web_contents.h (working copy)
@@ -332,6 +332,10 @@
const base::FilePath& dir_path,
SavePageType save_type) = 0;
+ // Saves the given frame's URL to the local filesystem..
+ virtual void SaveFrame(const GURL& url,
+ const Referrer& referrer) = 0;
+
// Generate an MHTML representation of the current page in the given file.
virtual void GenerateMHTML(
const base::FilePath& file,
@@ -402,9 +406,6 @@
// Gets the preferred size of the contents.
virtual gfx::Size GetPreferredSize() const = 0;
- // Get the content restrictions (see content::ContentRestriction).
- virtual int GetContentRestrictions() const = 0;
-
// Called when the reponse to a pending mouse lock request has arrived.
// Returns true if |allowed| is true and the mouse has been successfully
// locked.

Powered by Google App Engine
This is Rietveld 408576698