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

Side by Side Diff: chrome/common/extensions/manifest_handler.cc

Issue 57103003: Merge 232631 "This CL broke the official builders." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1690/src/
Patch Set: Created 7 years, 1 month 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/common/extensions/manifest_handler.h" 5 #include "chrome/common/extensions/manifest_handler.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 unsorted_handlers.swap(next_unsorted_handlers); 196 unsorted_handlers.swap(next_unsorted_handlers);
197 } 197 }
198 198
199 // If there are any leftover unsorted handlers, they must have had 199 // If there are any leftover unsorted handlers, they must have had
200 // circular dependencies. 200 // circular dependencies.
201 CHECK(unsorted_handlers.size() == 0) << "Extension manifest handlers have " 201 CHECK(unsorted_handlers.size() == 0) << "Extension manifest handlers have "
202 << "circular dependencies!"; 202 << "circular dependencies!";
203 } 203 }
204 204
205 } // namespace extensions 205 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/common/extensions/manifest_handler.h ('k') | chrome/common/extensions/manifest_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698