Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Unified Diff: webkit/common/resource_devtools_info.h

Issue 298293010: Move resource_devtools_info from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, nits Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/resource_response_info.h ('k') | webkit/common/resource_devtools_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/resource_devtools_info.h
diff --git a/webkit/common/resource_devtools_info.h b/webkit/common/resource_devtools_info.h
deleted file mode 100644
index 96c163c8a0881fa5064dd9c6df75019f80619fd1..0000000000000000000000000000000000000000
--- a/webkit/common/resource_devtools_info.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// 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_
-
-#include <string>
-#include <vector>
-
-#include "base/basictypes.h"
-#include "base/memory/ref_counted.h"
-#include "webkit/common/webkit_common_export.h"
-
-namespace webkit_glue {
-
-struct ResourceDevToolsInfo : base::RefCounted<ResourceDevToolsInfo> {
- typedef std::vector<std::pair<std::string, std::string> >
- HeadersVector;
-
- WEBKIT_COMMON_EXPORT ResourceDevToolsInfo();
-
- int32 http_status_code;
- std::string http_status_text;
- HeadersVector request_headers;
- HeadersVector response_headers;
- std::string request_headers_text;
- std::string response_headers_text;
-
- private:
- friend class base::RefCounted<ResourceDevToolsInfo>;
- WEBKIT_COMMON_EXPORT ~ResourceDevToolsInfo();
-};
-
-} // namespace webkit_glue
-
-#endif // WEBKIT_COMMON_RESOURCE_DEVTOOLS_INFO_H_
« no previous file with comments | « content/public/common/resource_response_info.h ('k') | webkit/common/resource_devtools_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698