mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-31 01:43:03 +08:00
e95224bbe7
This updates mini_chromium to 91ea4908ffd74d9c886bd2f8ccbfae6d31c499af. The last five commits listed here are required to support this change. The mini_chromium update includes: c1745a924c5c Fix paths to atomicops files in base.gyp from 2f02dcc73536 108e9247189c Add #include of <unistd.h> to close_nocancel.cc 6e4f98a9edf8 Add logging::SetLogMessageHandler() 4063fcb8f460 Add base::ThreadLocalStorage 4870f18a33a6 Add base::LazyInstance 0d31b1f3a289 Fix base/memory/aligned_memory.h for MSVC 91ea4908ffd7 base/logging.h: DCHECK() should always reference its condition BUG=crashpad:26 TEST=crashpad_util_test ThreadLogMessages.* R=rsesek@chromium.org Review URL: https://codereview.chromium.org/1041643003
49 lines
1.6 KiB
C++
49 lines
1.6 KiB
C++
// Copyright 2015 The Crashpad Authors. All rights reserved.
|
||
//
|
||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
// you may not use this file except in compliance with the License.
|
||
// You may obtain a copy of the License at
|
||
//
|
||
// http://www.apache.org/licenses/LICENSE-2.0
|
||
//
|
||
// Unless required by applicable law or agreed to in writing, software
|
||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
// See the License for the specific language governing permissions and
|
||
// limitations under the License.
|
||
|
||
#ifndef CRASHPAD_UTIL_THREAD_THREAD_LOG_MESSAGES_H_
|
||
#define CRASHPAD_UTIL_THREAD_THREAD_LOG_MESSAGES_H_
|
||
|
||
#include <string>
|
||
#include <vector>
|
||
|
||
#include "base/basictypes.h"
|
||
|
||
namespace crashpad {
|
||
|
||
//! \brief Captures log messages produced on the current thread during an
|
||
//! object’s lifetime.
|
||
//!
|
||
//! At most one object of this class type may exist on a single thread at a
|
||
//! time. When using this class, no other part of the program may call
|
||
//! `logging::SetLogMessageHandler()` at any time.
|
||
class ThreadLogMessages {
|
||
public:
|
||
ThreadLogMessages();
|
||
~ThreadLogMessages();
|
||
|
||
//! \return The log messages collected on the thread that this object was
|
||
//! created on since the time it was created.
|
||
const std::vector<std::string>& log_messages() const { return log_messages_; }
|
||
|
||
private:
|
||
std::vector<std::string> log_messages_;
|
||
|
||
DISALLOW_COPY_AND_ASSIGN(ThreadLogMessages);
|
||
};
|
||
|
||
} // namespace crashpad
|
||
|
||
#endif // CRASHPAD_UTIL_THREAD_THREAD_LOG_MESSAGES_H_
|