OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_USER_IMAGE_SOURCE_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_USER_IMAGE_SOURCE_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <string> |
| 10 #include <vector> |
| 11 |
| 12 #include "base/basictypes.h" |
| 13 #include "base/compiler_specific.h" |
| 14 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 15 |
| 16 namespace chromeos { |
| 17 |
| 18 // UserImageSource is the data source that serves user images for users that |
| 19 // have it. |
| 20 class UserImageSource : public ChromeURLDataManager::DataSource { |
| 21 public: |
| 22 UserImageSource(); |
| 23 |
| 24 // Called when the network layer has requested a resource underneath |
| 25 // the path we registered. |
| 26 virtual void StartDataRequest(const std::string& path, |
| 27 bool is_incognito, |
| 28 int request_id) OVERRIDE; |
| 29 |
| 30 virtual std::string GetMimeType(const std::string&) const OVERRIDE; |
| 31 |
| 32 // Returns PNG encoded image for user with specified email. |
| 33 // If there's no user with such email, returns the default image. |
| 34 std::vector<unsigned char> GetUserImage(const std::string& email) const; |
| 35 |
| 36 private: |
| 37 virtual ~UserImageSource(); |
| 38 |
| 39 DISALLOW_COPY_AND_ASSIGN(UserImageSource); |
| 40 }; |
| 41 |
| 42 } // namespace chromeos |
| 43 |
| 44 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_USER_IMAGE_SOURCE_H_ |
OLD | NEW |