9184c00bf4912086d31bdb0c744c831a5554795e
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / public / ewk_tracing.cc
1 // Copyright 2014 The Samsung Electronics Co., Ltd All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ewk_tracing.h"
6
7 #include "private/ewk_tracing_private.h"
8
9 Eina_Bool ewk_start_tracing(const char* categories,
10                             const char* trace_options,
11                             const char* trace_file_name) {
12   return ewk_start_tracing_private(categories, trace_options, trace_file_name);
13 }
14
15 void ewk_stop_tracing() {
16   ewk_stop_tracing_private();
17 }