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

Side by Side Diff: content/public/browser/print_subframe_details.h

Issue 2653963002: [Experimental] Supporting OOPIF printing
Patch Set: Rename service, fix for webview, and connect to DiscardableMemoryManager Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_BROWSER_PRINT_SUBFRAME_DETAILS_H_
6 #define CONTENT_PUBLIC_BROWSER_PRINT_SUBFRAME_DETAILS_H_
7
8 namespace content {
9
10 struct PrintSubframeDetails {
11 PrintSubframeDetails(int page_number, int id)
12 : page_num(page_number), subframe_id(id) {}
13
14 int page_num;
15 int subframe_id;
16 };
17
18 } // namespace content
19
20 #endif // CONTENT_PUBLIC_BROWSER_PRINT_SUBFRAME_DETAILS_H_
OLDNEW
« no previous file with comments | « content/public/browser/notification_types.h ('k') | content/public/browser/utility_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698