| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 content::Source<Profile>(dispatcher()->profile()), | 63 content::Source<Profile>(dispatcher()->profile()), |
| 64 content::Details<std::string>(&message)); | 64 content::Details<std::string>(&message)); |
| 65 return true; | 65 return true; |
| 66 } | 66 } |
| 67 | 67 |
| 68 TestLogFunction::~TestLogFunction() {} | 68 TestLogFunction::~TestLogFunction() {} |
| 69 | 69 |
| 70 bool TestLogFunction::RunImpl() { | 70 bool TestLogFunction::RunImpl() { |
| 71 std::string message; | 71 std::string message; |
| 72 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &message)); | 72 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &message)); |
| 73 VLOG(1) << message; | 73 LOG(ERROR) << 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->violation_errors_.clear(); | 83 quota->violation_errors_.clear(); |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 if (!test_config_state->config_state()) { | 137 if (!test_config_state->config_state()) { |
| 138 error_ = kNoTestConfigDataError; | 138 error_ = kNoTestConfigDataError; |
| 139 return false; | 139 return false; |
| 140 } | 140 } |
| 141 | 141 |
| 142 SetResult(test_config_state->config_state()->DeepCopy()); | 142 SetResult(test_config_state->config_state()->DeepCopy()); |
| 143 return true; | 143 return true; |
| 144 } | 144 } |
| 145 | 145 |
| 146 } // namespace extensions | 146 } // namespace extensions |
| OLD | NEW |