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

Unified Diff: content/common/page_message_enums.h

Issue 1804023002: Fix page zoom to be frame-centric for out-of-process frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove 'anonymous'. 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/common/page_message_enums.h
diff --git a/content/common/page_message_enums.h b/content/common/page_message_enums.h
new file mode 100644
index 0000000000000000000000000000000000000000..c4e0ce6a2d190caf50b6e52a8401b16bbf8a5341
--- /dev/null
+++ b/content/common/page_message_enums.h
@@ -0,0 +1,15 @@
+// Copyright 2016 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_COMMON_PAGE_MESSAGE_ENUMS_H_
+#define CONTENT_COMMON_PAGE_MESSAGE_ENUMS_H_
+
+enum class PageMsg_SetZoomLevel_Command {
+ SET_TEMPORARY,
+ CLEAR_TEMPORARY,
+ USE_CURRENT_TEMPORARY_MODE,
+ LAST = USE_CURRENT_TEMPORARY_MODE
+};
+
+#endif // CONTENT_COMMON_PAGE_MESSAGE_ENUMS_H_

Powered by Google App Engine
This is Rietveld 408576698