pdfium/testing/scoped_locale.h
Lei Zhang ee6325efec Move third_party/base/test/scoped_locale.* to testing
Move helpers used for testing to the testing directory. Also shorten the
pdfium::base nested namespace to namespace pdfium.

Bug: pdfium:2127
Change-Id: If26a9054b75178b1781d1c5a5572fb69125fcc05
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/116672
Reviewed-by: Thomas Sepez <tsepez@google.com>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
2024-02-17 02:31:38 +00:00

29 lines
652 B
C++

// Copyright 2024 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TESTING_SCOPED_LOCALE_H_
#define TESTING_SCOPED_LOCALE_H_
#include <string>
namespace pdfium {
// Sets the given |locale| on construction, and restores the previous locale
// on destruction.
class ScopedLocale {
public:
explicit ScopedLocale(const std::string& locale);
~ScopedLocale();
private:
std::string prev_locale_;
ScopedLocale(const ScopedLocale&) = delete;
ScopedLocale& operator=(const ScopedLocale&) = delete;
};
} // namespace pdfium
#endif // TESTING_SCOPED_LOCALE_H_