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

Side by Side Diff: webkit/glue/webframe_impl.h

Issue 7254: Initial Greasemonkey support (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/glue/webframe.h ('k') | webkit/glue/webframe_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 const GURL& base_url); 87 const GURL& base_url);
88 virtual void LoadAlternateHTMLString(const WebRequest* request, 88 virtual void LoadAlternateHTMLString(const WebRequest* request,
89 const std::string& html_text, 89 const std::string& html_text,
90 const GURL& display_url, 90 const GURL& display_url,
91 bool replace); 91 bool replace);
92 virtual void LoadAlternateHTMLErrorPage(const WebRequest* request, 92 virtual void LoadAlternateHTMLErrorPage(const WebRequest* request,
93 const WebError& error, 93 const WebError& error,
94 const GURL& error_page_url, 94 const GURL& error_page_url,
95 bool replace, 95 bool replace,
96 const GURL& fake_url); 96 const GURL& fake_url);
97 virtual void ExecuteJavaScript(const std::string& js_code,
98 const std::string& script_url);
97 virtual bool GetPreviousState(GURL* url, std::wstring* title, 99 virtual bool GetPreviousState(GURL* url, std::wstring* title,
98 std::string* history_state) const; 100 std::string* history_state) const;
99 virtual bool GetCurrentState(GURL* url, std::wstring* title, 101 virtual bool GetCurrentState(GURL* url, std::wstring* title,
100 std::string* history_state) const; 102 std::string* history_state) const;
101 virtual bool HasCurrentState() const; 103 virtual bool HasCurrentState() const;
102 virtual GURL GetURL() const; 104 virtual GURL GetURL() const;
103 virtual GURL GetFavIconURL() const; 105 virtual GURL GetFavIconURL() const;
104 virtual GURL GetOSDDURL() const; 106 virtual GURL GetOSDDURL() const;
105 virtual WebDataSource* GetDataSource() const; 107 virtual WebDataSource* GetDataSource() const;
106 virtual WebDataSource* GetProvisionalDataSource() const; 108 virtual WebDataSource* GetProvisionalDataSource() const;
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 // In "printing" mode. Used as a state check. 444 // In "printing" mode. Used as a state check.
443 bool printing_; 445 bool printing_;
444 446
445 // For each printed page, the view of the document in pixels. 447 // For each printed page, the view of the document in pixels.
446 Vector<WebCore::IntRect> pages_; 448 Vector<WebCore::IntRect> pages_;
447 449
448 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); 450 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl);
449 }; 451 };
450 452
451 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ 453 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/glue/webframe.h ('k') | webkit/glue/webframe_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698