// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_NULL_APP_SORTING_H_ #define EXTENSIONS_BROWSER_NULL_APP_SORTING_H_ #include <stddef.h> #include "base/compiler_specific.h" #include "extensions/browser/app_sorting.h" #include "extensions/common/extension_id.h" namespace extensions { // An AppSorting that doesn't provide any ordering. class NullAppSorting : public AppSorting { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_NULL_APP_SORTING_H_