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

Unified Diff: content/browser/renderer_host/frame_metadata_util.h

Issue 859973003: Touch emulator: enables double tap support for pages similar to Chrome on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: frame_metadata_util Created 5 years, 11 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 | « no previous file | content/browser/renderer_host/frame_metadata_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/frame_metadata_util.h
diff --git a/content/browser/renderer_host/frame_metadata_util.h b/content/browser/renderer_host/frame_metadata_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..54b97b8054cbb13220822c44340c385718706f02
--- /dev/null
+++ b/content/browser/renderer_host/frame_metadata_util.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2014 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 CONTENT_BROWSER_RENDERER_HOST_FRAME_METADATA_UTIL_H_
+#define CONTENT_BROWSER_RENDERER_HOST_FRAME_METADATA_UTIL_H_
+
+#include "content/common/content_export.h"
+
+namespace cc {
+class CompositorFrameMetadata;
+}
+
+namespace content {
+
+// Decides whether frame metadata corresponds to mobile-optimized content.
+// By default returns |false|, except for the following cases:
+// - page that has a width=device-width or narrower viewport
+// (indicating that this is a mobile-optimized or responsive web design);
+// - page that prevents zooming in or out.
+CONTENT_EXPORT bool IsMobileOptimizedFrame(
+ const cc::CompositorFrameMetadata& frame_metadata);
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_FRAME_METADATA_UTIL_H_
« no previous file with comments | « no previous file | content/browser/renderer_host/frame_metadata_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698