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

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

Issue 7461059: Fullscreen JS API implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to comments Created 9 years, 4 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 1942 matching lines...) Expand 10 before | Expand all | Expand 10 after
1953 std::string /* scheme */, 1953 std::string /* scheme */,
1954 GURL /* url */, 1954 GURL /* url */,
1955 string16 /* title */) 1955 string16 /* title */)
1956 1956
1957 // Stores new inspector setting in the profile. 1957 // Stores new inspector setting in the profile.
1958 // TODO(jam): this should be in the chrome module 1958 // TODO(jam): this should be in the chrome module
1959 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, 1959 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting,
1960 std::string, /* key */ 1960 std::string, /* key */
1961 std::string /* value */) 1961 std::string /* value */)
1962 1962
1963 // Puts the browser into fullscreen mode.
1964 IPC_MESSAGE_ROUTED0(ViewHostMsg_EnterFullscreenForElement);
scherkus (not reviewing) 2011/07/28 22:43:08 nit: the xxxForElement name is simply an artifact
koz (OOO until 15th September) 2011/07/29 04:12:58 Done.
1965
1966 // Makes the browser exit fullscreen mode.
1967 IPC_MESSAGE_ROUTED0(ViewHostMsg_ExitFullscreenForElement);
1968
1963 // Send back a string to be recorded by UserMetrics. 1969 // Send back a string to be recorded by UserMetrics.
1964 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, 1970 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
1965 std::string /* action */) 1971 std::string /* action */)
1966 1972
1967 // Provide the browser process with current renderer framerate. 1973 // Provide the browser process with current renderer framerate.
1968 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, 1974 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS,
1969 int /* routing id */, 1975 int /* routing id */,
1970 float /* frames per second */) 1976 float /* frames per second */)
1971 1977
1972 // Notifies the browser that the page was or was not saved as MHTML. 1978 // Notifies the browser that the page was or was not saved as MHTML.
1973 IPC_MESSAGE_CONTROL2(ViewHostMsg_SavedPageAsMHTML, 1979 IPC_MESSAGE_CONTROL2(ViewHostMsg_SavedPageAsMHTML,
1974 int /* job_id */, 1980 int /* job_id */,
1975 bool /* success */) 1981 bool /* success */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698