// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/browser/api/declarative_webrequest/request_stage.h" namespace extensions { const unsigned int kActiveStages = …; // HighestBit<n> computes the highest bit of |n| in compile time, provided that // |n| is a positive compile-time constant. template <long unsigned int n> struct HighestBit { … }; template <> struct HighestBit<1> { … }; const unsigned int kLastActiveStage = …; } // namespace extensions