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

Unified Diff: mojo/public/java/src/org/chromium/mojo/system/SharedBufferHandle.java

Issue 397493007: Add support for MojoCreateMessagePipeOptions struct to Java bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/java/src/org/chromium/mojo/system/MessagePipeHandle.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/java/src/org/chromium/mojo/system/SharedBufferHandle.java
diff --git a/mojo/public/java/src/org/chromium/mojo/system/SharedBufferHandle.java b/mojo/public/java/src/org/chromium/mojo/system/SharedBufferHandle.java
index b2eef0be8d91d7051dcd8ceafe65b7e73c36e392..df317d134d5911171bc5fbcff6be8b51c181c1e7 100644
--- a/mojo/public/java/src/org/chromium/mojo/system/SharedBufferHandle.java
+++ b/mojo/public/java/src/org/chromium/mojo/system/SharedBufferHandle.java
@@ -44,7 +44,7 @@ public interface SharedBufferHandle extends Handle {
* Used to specify creation parameters for a shared buffer to |Core#createSharedBuffer()|.
*/
public static class CreateOptions {
- private CreateFlags mFlags = CreateFlags.none();
+ private CreateFlags mFlags = CreateFlags.NONE;
/**
* @return the flags
@@ -89,7 +89,7 @@ public interface SharedBufferHandle extends Handle {
* |SharedBufferHandle#duplicate|
*/
public static class DuplicateOptions {
- private DuplicateFlags mFlags = DuplicateFlags.none();
+ private DuplicateFlags mFlags = DuplicateFlags.NONE;
/**
* @return the flags
« no previous file with comments | « mojo/public/java/src/org/chromium/mojo/system/MessagePipeHandle.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698