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

Unified Diff: chrome/browser/ui/webui/options/chromeos/user_image_source.h

Issue 11885021: Don't derive from ChromeURLDataManager::DataSource, and instead have these classes implement a dele… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: nits Created 7 years, 11 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: chrome/browser/ui/webui/options/chromeos/user_image_source.h
===================================================================
--- chrome/browser/ui/webui/options/chromeos/user_image_source.h (revision 176443)
+++ chrome/browser/ui/webui/options/chromeos/user_image_source.h (working copy)
@@ -10,7 +10,7 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
-#include "chrome/browser/ui/webui/chrome_url_data_manager.h"
+#include "content/public/browser/url_data_source_delegate.h"
#include "ui/base/layout.h"
namespace base {
@@ -22,16 +22,15 @@
// UserImageSource is the data source that serves user images for users that
// have it.
-class UserImageSource : public ChromeURLDataManager::DataSource {
+class UserImageSource : public content::URLDataSourceDelegate {
public:
UserImageSource();
- // Called when the network layer has requested a resource underneath
- // the path we registered.
+ // content::URLDataSourceDelegate implementation.
+ virtual std::string GetSource() OVERRIDE;
virtual void StartDataRequest(const std::string& path,
bool is_incognito,
int request_id) OVERRIDE;
-
virtual std::string GetMimeType(const std::string& path) const OVERRIDE;
// Returns PNG or GIF (when possible and if |is_image_animated| flag

Powered by Google App Engine
This is Rietveld 408576698