| Index: chrome/browser/disposition_utils.h
|
| ===================================================================
|
| --- chrome/browser/disposition_utils.h (revision 123752)
|
| +++ chrome/browser/disposition_utils.h (working copy)
|
| @@ -2,12 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CONTENT_BROWSER_DISPOSITION_UTILS_H_
|
| -#define CONTENT_BROWSER_DISPOSITION_UTILS_H_
|
| +#ifndef CHROME_BROWSER_DISPOSITION_UTILS_H_
|
| +#define CHROME_BROWSER_DISPOSITION_UTILS_H_
|
| #pragma once
|
|
|
| -#include "base/logging.h"
|
| -#include "content/common/content_export.h"
|
| #include "webkit/glue/window_open_disposition.h"
|
|
|
| namespace disposition_utils {
|
| @@ -15,12 +13,12 @@
|
| // 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.
|
| -CONTENT_EXPORT WindowOpenDisposition DispositionFromClick(bool middle_button,
|
| - bool alt_key,
|
| - bool ctrl_key,
|
| - bool meta_key,
|
| - bool shift_key);
|
| +WindowOpenDisposition DispositionFromClick(bool middle_button,
|
| + bool alt_key,
|
| + bool ctrl_key,
|
| + bool meta_key,
|
| + bool shift_key);
|
|
|
| }
|
|
|
| -#endif // CONTENT_BROWSER_DISPOSITION_UTILS_H_
|
| +#endif // CHROME_BROWSER_DISPOSITION_UTILS_H_
|
|
|