Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(598)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: ppapi/thunk/ppb_buffer_trusted_api.h
Issue
7108051
:
Implement out-of-process proxy for PPB_Buffer_Dev. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: exclude out-of-process testing for OS_MACOSX, where apparently sandboxing dies at startup.
Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
chrome/test/ui/ppapi_uitest.cc
ppapi/c/trusted/ppb_buffer_trusted.h
ppapi/cpp/dev/buffer_dev.h
ppapi/cpp/dev/buffer_dev.cc
ppapi/ppapi_cpp.gypi
ppapi/ppapi_shared.gypi
ppapi/proxy/ppapi_messages.h
ppapi/proxy/ppb_buffer_proxy.h
ppapi/proxy/ppb_buffer_proxy.cc
ppapi/shared_impl/resource_object_base.h
ppapi/tests/test_buffer.h
ppapi/tests/test_buffer.cc
ppapi/thunk/ppb_buffer_trusted_api.h
ppapi/thunk/ppb_buffer_trusted_thunk.cc
ppapi/thunk/resource_creation_api.h
ppapi/thunk/thunk.h
webkit/plugins/ppapi/plugin_module.cc
webkit/plugins/ppapi/ppb_buffer_impl.h
webkit/plugins/ppapi/ppb_buffer_impl.cc
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« ppapi/tests/test_buffer.cc
('k') |
ppapi/thunk/ppb_buffer_trusted_thunk.cc »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
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
3
// found in the LICENSE file.
4
5
#ifndef PPAPI_THUNK_BUFFER_TRUSTED_API_H_
6
#define PPAPI_THUNK_BUFFER_TRUSTED_API_H_
7
8
#include "ppapi/c/dev/ppb_buffer_dev.h"
9
#include "ppapi/c/trusted/ppb_buffer_trusted.h"
10
11
namespace ppapi {
12
namespace thunk {
13
14
class PPB_BufferTrusted_API {
15
public:
16
virtual int32_t GetSharedMemory(int* handle) = 0;
17
};
18
19
} // namespace thunk
20
} // namespace ppapi
21
22
#endif // PPAPI_THUNK_BUFFER_TRUSTED_API_H_
OLD
NEW
« no previous file with comments
|
« ppapi/tests/test_buffer.cc
('k') |
ppapi/thunk/ppb_buffer_trusted_thunk.cc »
('j') |
no next file with comments »
Issue 7108051: Implement out-of-process proxy for PPB_Buffer_Dev. (Closed)
Created 9 years, 6 months ago by Ami GONE FROM CHROMIUM
Modified 9 years, 6 months ago
Reviewers: piman
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 6
This is Rietveld
408576698