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

Unified Diff: content/renderer/manifest/manifest_debug_info.cc

Issue 1932623003: DevTools: Introduce Page.getManifest remote debugging protocol method. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 4 years, 8 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
Index: content/renderer/manifest/manifest_debug_info.cc
diff --git a/content/public/gpu/content_gpu_client.cc b/content/renderer/manifest/manifest_debug_info.cc
similarity index 53%
copy from content/public/gpu/content_gpu_client.cc
copy to content/renderer/manifest/manifest_debug_info.cc
index c2a8eacc3c51547a6b99d409e6c43c316feadb6b..d6d4287fe4b8937bf0704b3c51f44fcc7fd80604 100644
--- a/content/public/gpu/content_gpu_client.cc
+++ b/content/renderer/manifest/manifest_debug_info.cc
@@ -2,12 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/public/gpu/content_gpu_client.h"
+#include "content/renderer/manifest/manifest_debug_info.h"
namespace content {
-gpu::SyncPointManager* ContentGpuClient::GetSyncPointManager() {
- return nullptr;
+ManifestDebugInfo::ManifestDebugInfo() {
mlamouri (slow - plz ping) 2016/04/29 11:14:12 nit: = default;
pfeldman 2016/04/29 18:47:53 Done.
}
-} // namespace content
+ManifestDebugInfo::~ManifestDebugInfo() {
mlamouri (slow - plz ping) 2016/04/29 11:14:12 nit = default;
pfeldman 2016/04/29 18:47:53 Done.
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698