summaryrefslogtreecommitdiff
path: root/chromium/components/network_session_configurator/common/network_switches.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/network_session_configurator/common/network_switches.h')
-rw-r--r--chromium/components/network_session_configurator/common/network_switches.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/chromium/components/network_session_configurator/common/network_switches.h b/chromium/components/network_session_configurator/common/network_switches.h
index 7a511f54aff..ee5ea753788 100644
--- a/chromium/components/network_session_configurator/common/network_switches.h
+++ b/chromium/components/network_session_configurator/common/network_switches.h
@@ -5,13 +5,16 @@
#ifndef COMPONENTS_NETWORK_SESSION_CONFIGURATOR_COMMON_NETWORK_SWITCHES_H_
#define COMPONENTS_NETWORK_SESSION_CONFIGURATOR_COMMON_NETWORK_SWITCHES_H_
+#include "network_session_configurator_export.h"
+
namespace base {
class CommandLine;
}
namespace switches {
-#define NETWORK_SWITCH(name, value) extern const char name[];
+#define NETWORK_SWITCH(name, value) \
+ NETWORK_SESSION_CONFIGURATOR_EXPORT extern const char name[];
#include "components/network_session_configurator/common/network_switch_list.h"
#undef NETWORK_SWITCH
@@ -21,8 +24,9 @@ namespace network_session_configurator {
// Copies all command line switches the configurator handles from the |src|
// CommandLine to the |dest| one.
-void CopyNetworkSwitches(const base::CommandLine& src_command_line,
- base::CommandLine* dest_command_line);
+NETWORK_SESSION_CONFIGURATOR_EXPORT void CopyNetworkSwitches(
+ const base::CommandLine& src_command_line,
+ base::CommandLine* dest_command_line);
} // namespace network_session_configurator