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

Side by Side Diff: Source/web/InspectorFrontendClientImpl.cpp

Issue 223803003: [DevTools] Switch from insets to bounds to position inspected page. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 6 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
« no previous file with comments | « Source/devtools/front_end/ui/InspectedPagePlaceholder.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 " ['moveWindowBy', 2]," 114 " ['moveWindowBy', 2],"
115 " ['openInNewTab', 1]," 115 " ['openInNewTab', 1],"
116 " ['openUrlOnRemoteDeviceAndInspect', 2]," 116 " ['openUrlOnRemoteDeviceAndInspect', 2],"
117 " ['removeFileSystem', 1]," 117 " ['removeFileSystem', 1],"
118 " ['requestFileSystems', 0]," 118 " ['requestFileSystems', 0],"
119 " ['resetZoom', 0]," 119 " ['resetZoom', 0],"
120 " ['save', 3]," 120 " ['save', 3],"
121 " ['searchInPath', 3]," 121 " ['searchInPath', 3],"
122 " ['setWhitelistedShortcuts', 1]," 122 " ['setWhitelistedShortcuts', 1],"
123 " ['setContentsResizingStrategy', 2]," 123 " ['setContentsResizingStrategy', 2],"
124 " ['setInspectedPageBounds', 1],"
124 " ['setIsDocked', 1]," 125 " ['setIsDocked', 1],"
125 " ['subscribe', 1]," 126 " ['subscribe', 1],"
126 " ['stopIndexing', 1]," 127 " ['stopIndexing', 1],"
127 " ['unsubscribe', 1]," 128 " ['unsubscribe', 1],"
128 " ['zoomIn', 0]," 129 " ['zoomIn', 0],"
129 " ['zoomOut', 0]]);" 130 " ['zoomOut', 0]]);"
130 "" 131 ""
131 "" // Support for legacy front-ends (<M34). Do not add items here. 132 "" // Support for legacy front-ends (<M34). Do not add items here.
132 "InspectorFrontendHost.requestSetDockSide = function(dockSide)" 133 "InspectorFrontendHost.requestSetDockSide = function(dockSide)"
133 "{" 134 "{"
(...skipping 22 matching lines...) Expand all
156 { 157 {
157 m_client->sendMessageToEmbedder(message); 158 m_client->sendMessageToEmbedder(message);
158 } 159 }
159 160
160 bool InspectorFrontendClientImpl::isUnderTest() 161 bool InspectorFrontendClientImpl::isUnderTest()
161 { 162 {
162 return m_client->isUnderTest(); 163 return m_client->isUnderTest();
163 } 164 }
164 165
165 } // namespace blink 166 } // namespace blink
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/InspectedPagePlaceholder.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698