Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7084)

Unified Diff: chrome/test/chromedriver/logging.h

Issue 14263024: Logging API in chromedriver2. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/chromedriver/logging.h
===================================================================
--- chrome/test/chromedriver/logging.h (revision 0)
+++ chrome/test/chromedriver/logging.h (revision 0)
@@ -0,0 +1,20 @@
+// 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_TEST_CHROMEDRIVER_LOGGING_H_
+#define CHROME_TEST_CHROMEDRIVER_LOGGING_H_
+
+#include <string>
+#include <vector>
kkania 2013/04/18 20:27:55 drop both
klm 2013/04/18 22:53:34 Done.
+
+#include "base/memory/scoped_vector.h"
+
+struct Capabilities;
+class DevToolsEventLogger;
+class Status;
+
+Status CreateLoggers(const Capabilities& capabilities,
+ ScopedVector<DevToolsEventLogger>* out_loggers);
+
+#endif // CHROME_TEST_CHROMEDRIVER_LOGGING_H_

Powered by Google App Engine
This is Rietveld 408576698