SET(INCLUDES
${CMAKE_CURRENT_SOURCE_DIR}/manifest.h
- ${CMAKE_CURRENT_SOURCE_DIR}/manifest_constants.h
${CMAKE_CURRENT_SOURCE_DIR}/manifest_handler.h
${CMAKE_CURRENT_SOURCE_DIR}/manifest_parser.h
${CMAKE_CURRENT_SOURCE_DIR}/permission_types.h
+++ /dev/null
-// Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
-// Use of this source code is governed by an apache 2.0 license that can be
-// found in the LICENSE file.
-
-#ifndef MANIFEST_PARSER_MANIFEST_CONSTANTS_H_
-#define MANIFEST_PARSER_MANIFEST_CONSTANTS_H_
-
-namespace parser {
-
- // TODO(p.sikorski): it is now used in app-installer. It should be firstly
- // removed from there, and then this can be also removed
- const char kWidgetKey[] = "widget";
-
-} // namespace parser
-
-#endif // MANIFEST_PARSER_MANIFEST_CONSTANTS_H_
namespace parser {
-// TODO(p.sikorski): temporary place for this key
-const char kW3CNamespacePrefix[] = "http://www.w3.org/ns/widgets";
-
ManifestHandler::~ManifestHandler() {
}
#include <vector>
#include "manifest_parser/manifest.h"
-#include "manifest_parser/manifest_constants.h"
namespace parser {
-// TODO(p.sikorski): temporary place for this key
-extern const char kW3CNamespacePrefix[];
-
// A base class for parsed manifest data that APIs want to store on
// the application.
class ManifestData {
#include <vector>
#include "manifest_parser/manifest_handler.h"
-#include "manifest_parser/manifest_constants.h"
#include "utils/iri_util.h"
#include "utils/logging.h"