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

Side by Side Diff: ppapi/thunk/ppb_printing_dev_thunk.cc

Issue 1412323002: ppapi: Support up to 32 subsamples in PP_EncryptedBlockInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // From dev/ppb_printing_dev.idl modified Tue May 7 14:43:00 2013. 5 // From dev/ppb_printing_dev.idl modified Fri Jun 13 10:40:42 2014.
6 6
7 #include "ppapi/c/dev/ppb_printing_dev.h" 7 #include "ppapi/c/dev/ppb_printing_dev.h"
8 #include "ppapi/c/pp_completion_callback.h" 8 #include "ppapi/c/pp_completion_callback.h"
9 #include "ppapi/c/pp_errors.h" 9 #include "ppapi/c/pp_errors.h"
10 #include "ppapi/shared_impl/tracked_callback.h" 10 #include "ppapi/shared_impl/tracked_callback.h"
11 #include "ppapi/thunk/enter.h" 11 #include "ppapi/thunk/enter.h"
12 #include "ppapi/thunk/ppapi_thunk_export.h" 12 #include "ppapi/thunk/ppapi_thunk_export.h"
13 #include "ppapi/thunk/ppb_printing_api.h" 13 #include "ppapi/thunk/ppb_printing_api.h"
14 14
15 namespace ppapi { 15 namespace ppapi {
(...skipping 14 matching lines...) Expand all
30 struct PP_CompletionCallback callback) { 30 struct PP_CompletionCallback callback) {
31 VLOG(4) << "PPB_Printing_Dev::GetDefaultPrintSettings()"; 31 VLOG(4) << "PPB_Printing_Dev::GetDefaultPrintSettings()";
32 EnterResource<PPB_Printing_API> enter(resource, callback, true); 32 EnterResource<PPB_Printing_API> enter(resource, callback, true);
33 if (enter.failed()) 33 if (enter.failed())
34 return enter.retval(); 34 return enter.retval();
35 return enter.SetResult(enter.object()->GetDefaultPrintSettings( 35 return enter.SetResult(enter.object()->GetDefaultPrintSettings(
36 print_settings, enter.callback())); 36 print_settings, enter.callback()));
37 } 37 }
38 38
39 const PPB_Printing_Dev_0_7 g_ppb_printing_dev_thunk_0_7 = { 39 const PPB_Printing_Dev_0_7 g_ppb_printing_dev_thunk_0_7 = {
40 &Create, 40 &Create, &GetDefaultPrintSettings};
41 &GetDefaultPrintSettings};
42 41
43 } // namespace 42 } // namespace
44 43
45 PPAPI_THUNK_EXPORT const PPB_Printing_Dev_0_7* GetPPB_Printing_Dev_0_7_Thunk() { 44 PPAPI_THUNK_EXPORT const PPB_Printing_Dev_0_7* GetPPB_Printing_Dev_0_7_Thunk() {
46 return &g_ppb_printing_dev_thunk_0_7; 45 return &g_ppb_printing_dev_thunk_0_7;
47 } 46 }
48 47
49 } // namespace thunk 48 } // namespace thunk
50 } // namespace ppapi 49 } // namespace ppapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698