OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_SOURCE_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_SOURCE_H_ |
6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_SOURCE_H_ | 6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_SOURCE_H_ |
7 | 7 |
8 #include <string> | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 10 #include "content/public/browser/url_data_source_delegate.h" |
9 | 11 |
10 #include "base/message_loop.h" | 12 class CloudPrintSetupSource : public content::URLDataSourceDelegate { |
11 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | |
12 #include "chrome/common/url_constants.h" | |
13 | |
14 class CloudPrintSetupSource : public ChromeURLDataManager::DataSource { | |
15 public: | 13 public: |
16 CloudPrintSetupSource(); | 14 CloudPrintSetupSource(); |
| 15 |
| 16 // content::URLDataSourceDelegate implementation. |
| 17 virtual std::string GetSource() OVERRIDE; |
17 virtual void StartDataRequest(const std::string& path, | 18 virtual void StartDataRequest(const std::string& path, |
18 bool is_incognito, | 19 bool is_incognito, |
19 int request_id) OVERRIDE; | 20 int request_id) OVERRIDE; |
20 | |
21 virtual std::string GetMimeType(const std::string& path) const OVERRIDE; | 21 virtual std::string GetMimeType(const std::string& path) const OVERRIDE; |
22 | 22 |
23 static const char kInvalidPasswordHelpUrl[]; | 23 static const char kInvalidPasswordHelpUrl[]; |
24 static const char kCanNotAccessAccountUrl[]; | 24 static const char kCanNotAccessAccountUrl[]; |
25 static const char kCreateNewAccountUrl[]; | 25 static const char kCreateNewAccountUrl[]; |
26 | 26 |
27 private: | 27 private: |
28 virtual ~CloudPrintSetupSource() {} | 28 virtual ~CloudPrintSetupSource() {} |
29 | 29 |
30 // Takes a string containing an URL and returns an URL containing a CGI | 30 // Takes a string containing an URL and returns an URL containing a CGI |
31 // parameter of the form "&hl=xy" where 'xy' is the language code of the | 31 // parameter of the form "&hl=xy" where 'xy' is the language code of the |
32 // current locale. | 32 // current locale. |
33 std::string GetLocalizedUrl(const std::string& url) const; | 33 std::string GetLocalizedUrl(const std::string& url) const; |
34 | 34 |
35 DISALLOW_COPY_AND_ASSIGN(CloudPrintSetupSource); | 35 DISALLOW_COPY_AND_ASSIGN(CloudPrintSetupSource); |
36 }; | 36 }; |
37 | 37 |
38 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_SOURCE_H_ | 38 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_SOURCE_H_ |
OLD | NEW |