Merge "Fix include paths" into jb-mr2-dev

This commit is contained in:
Mathias Agopian 2013-04-02 23:20:15 +00:00 committed by Android (Google) Code Review
commit 128fcea1c6
2 changed files with 6 additions and 5 deletions

View File

@ -33,8 +33,8 @@
#include <gui/GraphicBufferAlloc.h>
#include <ui/GraphicBuffer.h>
#include "DisplayHardware/FramebufferSurface.h"
#include "DisplayHardware/HWComposer.h"
#include "FramebufferSurface.h"
#include "HWComposer.h"
#ifndef NUM_FRAMEBUFFER_SURFACE_BUFFERS
#define NUM_FRAMEBUFFER_SURFACE_BUFFERS (2)

View File

@ -25,6 +25,7 @@
#include <string.h>
#include <sys/types.h>
#include <utils/CallStack.h>
#include <utils/Errors.h>
#include <utils/misc.h>
#include <utils/String8.h>
@ -40,10 +41,10 @@
#include <cutils/log.h>
#include <cutils/properties.h>
#include "Layer.h" // needed only for debugging
#include "HWComposer.h"
#include "SurfaceFlinger.h"
#include <utils/CallStack.h>
#include "../Layer.h" // needed only for debugging
#include "../SurfaceFlinger.h"
namespace android {