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

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

Issue 46055: RSS feed support (part 1), 2nd attempt (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 const GURL& fake_url); 92 const GURL& fake_url);
93 virtual void ExecuteJavaScript(const std::string& js_code, 93 virtual void ExecuteJavaScript(const std::string& js_code,
94 const GURL& script_url, 94 const GURL& script_url,
95 int start_line); 95 int start_line);
96 virtual bool GetPreviousHistoryState(std::string* history_state) const; 96 virtual bool GetPreviousHistoryState(std::string* history_state) const;
97 virtual bool GetCurrentHistoryState(std::string* history_state) const; 97 virtual bool GetCurrentHistoryState(std::string* history_state) const;
98 virtual bool HasCurrentHistoryState() const; 98 virtual bool HasCurrentHistoryState() const;
99 virtual GURL GetURL() const; 99 virtual GURL GetURL() const;
100 virtual GURL GetFavIconURL() const; 100 virtual GURL GetFavIconURL() const;
101 virtual GURL GetOSDDURL() const; 101 virtual GURL GetOSDDURL() const;
102 virtual scoped_refptr<class FeedList> GetFeedList() const;
102 virtual WebDataSource* GetDataSource() const; 103 virtual WebDataSource* GetDataSource() const;
103 virtual WebDataSource* GetProvisionalDataSource() const; 104 virtual WebDataSource* GetProvisionalDataSource() const;
104 virtual void StopLoading(); 105 virtual void StopLoading();
105 virtual WebFrame* GetOpener() const; 106 virtual WebFrame* GetOpener() const;
106 virtual WebFrame* GetParent() const; 107 virtual WebFrame* GetParent() const;
107 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; 108 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const;
108 virtual WebView* GetView() const; 109 virtual WebView* GetView() const;
109 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image, 110 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image,
110 bool scroll_to_zero); 111 bool scroll_to_zero);
111 112
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 // The input fields that are interested in edit events and their associated 417 // The input fields that are interested in edit events and their associated
417 // listeners. 418 // listeners.
418 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, 419 typedef HashMap<RefPtr<WebCore::HTMLInputElement>,
419 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; 420 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap;
420 PasswordListenerMap password_listeners_; 421 PasswordListenerMap password_listeners_;
421 422
422 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); 423 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl);
423 }; 424 };
424 425
425 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ 426 #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