OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/extensions/extension_chrome_auth_private_api.h" | 5 #include "chrome/browser/extensions/api/chrome_auth_private/chrome_auth_private_
api.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
10 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service.h" | 10 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service.h" |
11 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" | 11 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" |
12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
13 | 13 |
14 namespace { | 14 namespace { |
15 | 15 |
16 bool test_mode = false; | 16 bool test_mode = false; |
17 | 17 |
18 } // namespace | 18 } // namespace |
19 | 19 |
| 20 namespace extensions { |
| 21 |
20 SetCloudPrintCredentialsFunction::SetCloudPrintCredentialsFunction() { | 22 SetCloudPrintCredentialsFunction::SetCloudPrintCredentialsFunction() { |
21 } | 23 } |
22 | 24 |
23 SetCloudPrintCredentialsFunction::~SetCloudPrintCredentialsFunction() { | 25 SetCloudPrintCredentialsFunction::~SetCloudPrintCredentialsFunction() { |
24 } | 26 } |
25 | 27 |
26 bool SetCloudPrintCredentialsFunction::RunImpl() { | 28 bool SetCloudPrintCredentialsFunction::RunImpl() { |
27 std::string user_email; | 29 std::string user_email; |
28 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &user_email)); | 30 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &user_email)); |
29 std::string robot_email; | 31 std::string robot_email; |
(...skipping 10 matching lines...) Expand all Loading... |
40 EnableForUserWithRobot(credentials, robot_email, user_email); | 42 EnableForUserWithRobot(credentials, robot_email, user_email); |
41 } | 43 } |
42 SendResponse(true); | 44 SendResponse(true); |
43 return true; | 45 return true; |
44 } | 46 } |
45 | 47 |
46 // static | 48 // static |
47 void SetCloudPrintCredentialsFunction::SetTestMode(bool test_mode_enabled) { | 49 void SetCloudPrintCredentialsFunction::SetTestMode(bool test_mode_enabled) { |
48 test_mode = test_mode_enabled; | 50 test_mode = test_mode_enabled; |
49 } | 51 } |
| 52 |
| 53 } // namespace extensions |
OLD | NEW |