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

Side by Side Diff: net/android/java/net_errors_java.template

Issue 10912136: Build NetError.java to use in java side tests by preprocessing net_errors.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
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 #include "media/base/audio_renderer.h" 5 // Auto-generated from gen_net_error_java.template
6 // DO NOT EDIT!
joth 2012/09/07 21:45:46 note this comment doesn't make it through to the g
6 7
7 namespace media { 8 package org.chromium.net;
8 9
9 AudioRenderer::AudioRenderer() {} 10 public class NetError {
10 AudioRenderer::~AudioRenderer() {} 11 #define NET_ERROR(name, value) public static int ERR_##name = value;
12 #include "net/base/net_error_list.h"
13 }
11 14
12 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698