| 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/api/test/test_api.h" | 5 #include "chrome/browser/extensions/api/test/test_api.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 VLOG(1) << message; | 73 VLOG(1) << message; |
| 74 return true; | 74 return true; |
| 75 } | 75 } |
| 76 | 76 |
| 77 TestResetQuotaFunction::~TestResetQuotaFunction() {} | 77 TestResetQuotaFunction::~TestResetQuotaFunction() {} |
| 78 | 78 |
| 79 bool TestResetQuotaFunction::RunImpl() { | 79 bool TestResetQuotaFunction::RunImpl() { |
| 80 ExtensionService* service = profile()->GetExtensionService(); | 80 ExtensionService* service = profile()->GetExtensionService(); |
| 81 ExtensionsQuotaService* quota = service->quota_service(); | 81 ExtensionsQuotaService* quota = service->quota_service(); |
| 82 quota->Purge(); | 82 quota->Purge(); |
| 83 quota->violators_.clear(); | 83 quota->violation_errors_.clear(); |
| 84 return true; | 84 return true; |
| 85 } | 85 } |
| 86 | 86 |
| 87 TestCreateIncognitoTabFunction:: | 87 TestCreateIncognitoTabFunction:: |
| 88 ~TestCreateIncognitoTabFunction() {} | 88 ~TestCreateIncognitoTabFunction() {} |
| 89 | 89 |
| 90 bool TestCreateIncognitoTabFunction::RunImpl() { | 90 bool TestCreateIncognitoTabFunction::RunImpl() { |
| 91 std::string url; | 91 std::string url; |
| 92 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &url)); | 92 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &url)); |
| 93 chrome::OpenURLOffTheRecord(profile(), GURL(url)); | 93 chrome::OpenURLOffTheRecord(profile(), GURL(url)); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 if (!test_config_state->config_state()) { | 136 if (!test_config_state->config_state()) { |
| 137 error_ = kNoTestConfigDataError; | 137 error_ = kNoTestConfigDataError; |
| 138 return false; | 138 return false; |
| 139 } | 139 } |
| 140 | 140 |
| 141 SetResult(test_config_state->config_state()->DeepCopy()); | 141 SetResult(test_config_state->config_state()->DeepCopy()); |
| 142 return true; | 142 return true; |
| 143 } | 143 } |
| 144 | 144 |
| 145 } // namespace extensions | 145 } // namespace extensions |
| OLD | NEW |