Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: chrome/browser/extensions/api/test/test_api.cc

Issue 10871034: Make all quota-exceeding messages in the storage API explain what the failure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update... the other error message Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/bookmarks/bookmark_extension_api.cc ('k') | chrome/browser/extensions/api/web_request/web_request_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698