// 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. #ifndef CHROME_BROWSER_INTERNAL_AUTH_H_ #define CHROME_BROWSER_INTERNAL_AUTH_H_ #include <map> #include <string> #include "base/gtest_prod_util.h" // Call InternalAuthVerification methods on any thread. class InternalAuthVerification { … }; // Not thread-safe. Make all calls on the same thread (UI thread). class InternalAuthGeneration { … }; #endif // CHROME_BROWSER_INTERNAL_AUTH_H_