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

Unified Diff: third_party/WebKit/Source/platform/exported/WebTraceLocation.cpp

Issue 2218933003: Revert of Make WebTraceLocation be an alias of tracked_objects::Location (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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: third_party/WebKit/Source/platform/exported/WebTraceLocation.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebTraceLocation.cpp b/third_party/WebKit/Source/platform/exported/WebTraceLocation.cpp
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..33517b360839080998f89a2522c494b6639d0453 100644
--- a/third_party/WebKit/Source/platform/exported/WebTraceLocation.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebTraceLocation.cpp
@@ -0,0 +1,29 @@
+// Copyright 2014 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.
+
+#include "public/platform/WebTraceLocation.h"
+
+namespace blink {
+
+WebTraceLocation::WebTraceLocation()
+ : m_functionName("unknown")
+ , m_fileName("unknown")
+{ }
+
+WebTraceLocation::WebTraceLocation(const char* functionName, const char* fileName)
+ : m_functionName(functionName)
+ , m_fileName(fileName)
+{ }
+
+const char* WebTraceLocation::functionName() const
+{
+ return m_functionName;
+}
+
+const char* WebTraceLocation::fileName() const
+{
+ return m_fileName;
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698