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

Unified Diff: third_party/WebKit/Source/platform/TracedValue.h

Issue 2346663004: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: Created 4 years, 3 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/TracedValue.h
diff --git a/third_party/WebKit/Source/platform/TracedValue.h b/third_party/WebKit/Source/platform/TracedValue.h
deleted file mode 100644
index f3b315b00a1d1fc0bd6ca754c635ab305675fcb1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/TracedValue.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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.
-
-#ifndef TracedValue_h
-#define TracedValue_h
-
-#include "base/memory/ref_counted.h"
-#include "platform/EventTracer.h"
-#include "wtf/text/WTFString.h"
-#include <memory>
-
-namespace base {
-namespace trace_event {
-class TracedValue;
-}
-}
-
-namespace blink {
-
-// TracedValue copies all passed names and values and doesn't retain references.
-class PLATFORM_EXPORT TracedValue final {
- WTF_MAKE_NONCOPYABLE(TracedValue);
-
-public:
- ~TracedValue();
-
- static std::unique_ptr<TracedValue> create();
-
- void endDictionary();
- void endArray();
-
- void setInteger(const char* name, int value);
- void setDouble(const char* name, double);
- void setBoolean(const char* name, bool value);
- void setString(const char* name, const String& value);
- void beginArray(const char* name);
- void beginDictionary(const char* name);
-
- void pushInteger(int);
- void pushDouble(double);
- void pushBoolean(bool);
- void pushString(const String&);
- void beginArray();
- void beginDictionary();
-
- String toString() const;
-
-private:
- TracedValue();
-
- // This will be moved (and become null) when TracedValue is passed to
- // EventTracer::addTraceEvent().
- std::unique_ptr<base::trace_event::TracedValue> m_tracedValue;
-
- friend class EventTracer;
-};
-
-} // namespace blink
-
-#endif // TracedValue_h

Powered by Google App Engine
This is Rietveld 408576698