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

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: Rebase to master@{#386187}. 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..1f7119fb9b2821504bb3a48fc0a9a5b6ab7fbd12
--- /dev/null
+++ b/content/common/page_message_enums.h
@@ -0,0 +1,14 @@
+// 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 {
+ ZOOM_SET_TEMPORARY,
alexmos 2016/04/11 23:19:10 nit: ZOOM_ prefix seems redundant now that this is
wjmaclean 2016/04/13 18:47:47 Done.
+ ZOOM_CLEAR_TEMPORARY,
+ ZOOM_USE_CURRENT_TEMPORARY_MODE
+};
+
+#endif // CONTENT_COMMON_PAGE_MESSAGE_ENUMS_H_

Powered by Google App Engine
This is Rietveld 408576698