[M120 Migration][VD] Remove accessing oom_score_adj in zygote process
[platform/framework/web/chromium-efl.git] / printing / metafile_agent.h
1 // Copyright 2021 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PRINTING_METAFILE_AGENT_H_
6 #define PRINTING_METAFILE_AGENT_H_
7
8 #include <string>
9
10 #include "base/component_export.h"
11
12 namespace printing {
13
14 // Inform the printing system that it may embed this user-agent string
15 // in its output's metadata.
16 COMPONENT_EXPORT(PRINTING_METAFILE)
17 void SetAgent(const std::string& user_agent);
18 COMPONENT_EXPORT(PRINTING_METAFILE) const std::string& GetAgent();
19
20 }  // namespace printing
21
22 #endif  // PRINTING_METAFILE_AGENT_H_