blob: 1c679be3d870fb87fa58980543de4ae7844cfc52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_DRIVE_LOGGING_H_
#define CHROME_BROWSER_CHROMEOS_DRIVE_LOGGING_H_
#include <string>
#include <vector>
#include "chrome/browser/google_apis/event_logger.h"
namespace drive {
// Originally wanted to use 'logging' here, but it conflicts with
// base/logging.h, and breaks DCHECK() and friends.
namespace util {
// Logs a message using printf format.
// This function can be called from any thread.
void Log(const char* format, ...) PRINTF_FORMAT(1, 2);
// Returns the log history.
// This function can be called from any thread.
std::vector<google_apis::EventLogger::Event> GetLogHistory();
} // namespace util
} // namespace drive
#endif // CHROME_BROWSER_CHROMEOS_DRIVE_LOGGING_H_
|