| Index: content/browser/disposition_utils.h
|
| diff --git a/content/browser/disposition_utils.h b/content/browser/disposition_utils.h
|
| index ba8c9e5d810f7adecf614ce1e80e869cffa4cdbd..a53135016bb3df919ee904b91107436ab546bcc9 100644
|
| --- a/content/browser/disposition_utils.h
|
| +++ b/content/browser/disposition_utils.h
|
| @@ -6,6 +6,7 @@
|
| #define CONTENT_BROWSER_DISPOSITION_UTILS_H_
|
| #pragma once
|
|
|
| +#include "content/common/content_export.h"
|
| #include "webkit/glue/window_open_disposition.h"
|
|
|
| namespace disposition_utils {
|
| @@ -13,11 +14,11 @@ namespace disposition_utils {
|
| // Translates event flags from a click on a link into the user's desired
|
| // window disposition. For example, a middle click would mean to open
|
| // a background tab.
|
| -WindowOpenDisposition DispositionFromClick(bool middle_button,
|
| - bool alt_key,
|
| - bool ctrl_key,
|
| - bool meta_key,
|
| - bool shift_key);
|
| +CONTENT_EXPORT WindowOpenDisposition DispositionFromClick(bool middle_button,
|
| + bool alt_key,
|
| + bool ctrl_key,
|
| + bool meta_key,
|
| + bool shift_key);
|
|
|
| }
|
|
|
|
|