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

Unified Diff: mojo/public/platform/native/gles2_impl_thunks.h

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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
Index: mojo/public/platform/native/gles2_impl_thunks.h
diff --git a/third_party/mojo/src/mojo/public/platform/native/gles2_impl_thunks.h b/mojo/public/platform/native/gles2_impl_thunks.h
similarity index 76%
rename from third_party/mojo/src/mojo/public/platform/native/gles2_impl_thunks.h
rename to mojo/public/platform/native/gles2_impl_thunks.h
index 0d6f99a60ae6fc73654690c6abf4290295da0f58..47765f2ffa24e8dc6c0da16c1f8f3f47231a68a7 100644
--- a/third_party/mojo/src/mojo/public/platform/native/gles2_impl_thunks.h
+++ b/mojo/public/platform/native/gles2_impl_thunks.h
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_THUNKS_H_
-#define THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_THUNKS_H_
+#ifndef MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_THUNKS_H_
+#define MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_THUNKS_H_
#include <stddef.h>
-#include "third_party/mojo/src/mojo/public/c/gles2/gles2.h"
+#include "mojo/public/c/gles2/gles2.h"
// Like MojoGLES2ControlThunks, but specifies the frozen GLES2 API. Separated
// out as MojoGLES2ControlThunks may be modified and added to, but this
@@ -18,7 +18,7 @@ struct MojoGLES2ImplThunks {
#define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) \
ReturnType(GL_APIENTRY *Function) PARAMETERS;
-#include "third_party/mojo/src/mojo/public/c/gles2/gles2_call_visitor_autogen.h"
+#include "mojo/public/c/gles2/gles2_call_visitor_autogen.h"
#undef VISIT_GL_CALL
};
#pragma pack(pop)
@@ -29,7 +29,7 @@ inline MojoGLES2ImplThunks MojoMakeGLES2ImplThunks() {
MojoGLES2ImplThunks gles2_impl_thunks = {
sizeof(MojoGLES2ImplThunks),
#define VISIT_GL_CALL(Function, ReturnType, PARAMETERS, ARGUMENTS) gl##Function,
-#include "third_party/mojo/src/mojo/public/c/gles2/gles2_call_visitor_autogen.h"
+#include "mojo/public/c/gles2/gles2_call_visitor_autogen.h"
#undef VISIT_GL_CALL
};
@@ -46,4 +46,4 @@ inline MojoGLES2ImplThunks MojoMakeGLES2ImplThunks() {
typedef size_t (*MojoSetGLES2ImplThunksFn)(
const MojoGLES2ImplThunks* gles2_impl_thunks);
-#endif // THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_THUNKS_H_
+#endif // MOJO_PUBLIC_PLATFORM_NATIVE_GLES2_IMPL_THUNKS_H_
« no previous file with comments | « mojo/public/platform/native/gles2_impl_chromium_extension_thunks.cc ('k') | mojo/public/platform/native/gles2_impl_thunks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698