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

Side by Side Diff: content/common/view_messages.h

Issue 7036019: Enabling page visibility api in the chrome browser. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 IPC_STRUCT_MEMBER(std::string, state) 687 IPC_STRUCT_MEMBER(std::string, state)
688 688
689 // Type of navigation. 689 // Type of navigation.
690 IPC_STRUCT_MEMBER(ViewMsg_Navigate_Type::Value, navigation_type) 690 IPC_STRUCT_MEMBER(ViewMsg_Navigate_Type::Value, navigation_type)
691 691
692 // The time the request was created 692 // The time the request was created
693 IPC_STRUCT_MEMBER(base::Time, request_time) 693 IPC_STRUCT_MEMBER(base::Time, request_time)
694 694
695 // Extra headers (separated by \n) to send during the request. 695 // Extra headers (separated by \n) to send during the request.
696 IPC_STRUCT_MEMBER(std::string, extra_headers) 696 IPC_STRUCT_MEMBER(std::string, extra_headers)
697
698 // Is the tab containing the corresponding rvh visible?
699 IPC_STRUCT_MEMBER(bool, is_hidden)
697 IPC_STRUCT_END() 700 IPC_STRUCT_END()
698 701
699 IPC_STRUCT_BEGIN(ViewMsg_New_Params) 702 IPC_STRUCT_BEGIN(ViewMsg_New_Params)
700 // The parent window's id. 703 // The parent window's id.
701 IPC_STRUCT_MEMBER(gfx::NativeViewId, parent_window) 704 IPC_STRUCT_MEMBER(gfx::NativeViewId, parent_window)
702 705
703 // Surface for accelerated rendering. 706 // Surface for accelerated rendering.
704 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, compositing_surface) 707 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, compositing_surface)
705 708
706 // Renderer-wide preferences. 709 // Renderer-wide preferences.
(...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1940 1943
1941 // Stores new inspector setting in the profile. 1944 // Stores new inspector setting in the profile.
1942 // TODO(jam): this should be in the chrome module 1945 // TODO(jam): this should be in the chrome module
1943 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, 1946 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting,
1944 std::string, /* key */ 1947 std::string, /* key */
1945 std::string /* value */) 1948 std::string /* value */)
1946 1949
1947 // Send back a string to be recorded by UserMetrics. 1950 // Send back a string to be recorded by UserMetrics.
1948 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, 1951 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
1949 std::string /* action */) 1952 std::string /* action */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698