| Index: content/public/common/resource_devtools_info.h
|
| diff --git a/webkit/common/resource_devtools_info.h b/content/public/common/resource_devtools_info.h
|
| similarity index 67%
|
| rename from webkit/common/resource_devtools_info.h
|
| rename to content/public/common/resource_devtools_info.h
|
| index 96c163c8a0881fa5064dd9c6df75019f80619fd1..f6634823c12bb3df21e7d403d082fe918f392101 100644
|
| --- a/webkit/common/resource_devtools_info.h
|
| +++ b/content/public/common/resource_devtools_info.h
|
| @@ -2,23 +2,23 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef WEBKIT_COMMON_RESOURCE_DEVTOOLS_INFO_H_
|
| -#define WEBKIT_COMMON_RESOURCE_DEVTOOLS_INFO_H_
|
| +#ifndef CONTENT_COMMON_RESOURCE_DEVTOOLS_INFO_H_
|
| +#define CONTENT_COMMON_RESOURCE_DEVTOOLS_INFO_H_
|
|
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/basictypes.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "webkit/common/webkit_common_export.h"
|
| +#include "content/common/content_export.h"
|
|
|
| -namespace webkit_glue {
|
| +namespace content {
|
|
|
| struct ResourceDevToolsInfo : base::RefCounted<ResourceDevToolsInfo> {
|
| typedef std::vector<std::pair<std::string, std::string> >
|
| HeadersVector;
|
|
|
| - WEBKIT_COMMON_EXPORT ResourceDevToolsInfo();
|
| + CONTENT_EXPORT ResourceDevToolsInfo();
|
|
|
| int32 http_status_code;
|
| std::string http_status_text;
|
| @@ -29,9 +29,9 @@ struct ResourceDevToolsInfo : base::RefCounted<ResourceDevToolsInfo> {
|
|
|
| private:
|
| friend class base::RefCounted<ResourceDevToolsInfo>;
|
| - WEBKIT_COMMON_EXPORT ~ResourceDevToolsInfo();
|
| + CONTENT_EXPORT ~ResourceDevToolsInfo();
|
| };
|
|
|
| -} // namespace webkit_glue
|
| +} // namespace content
|
|
|
| -#endif // WEBKIT_COMMON_RESOURCE_DEVTOOLS_INFO_H_
|
| +#endif // CONTENT_COMMON_RESOURCE_DEVTOOLS_INFO_H_
|
|
|