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

Unified Diff: ppapi/cpp/fullscreen.h

Issue 8291002: PPAPI Fullscreen: move out of Dev. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | « ppapi/c/ppb_fullscreen.h ('k') | ppapi/cpp/fullscreen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/fullscreen.h
===================================================================
--- ppapi/cpp/fullscreen.h (revision 105474)
+++ ppapi/cpp/fullscreen.h (working copy)
@@ -1,21 +1,21 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_CPP_DEV_FULLSCREEN_DEV_H_
-#define PPAPI_CPP_DEV_FULLSCREEN_DEV_H_
+#ifndef PPAPI_CPP_FULLSCREEN_H_
+#define PPAPI_CPP_FULLSCREEN_H_
namespace pp {
class Instance;
class Size;
-class Fullscreen_Dev {
+class Fullscreen {
public:
- Fullscreen_Dev(Instance* instance);
- virtual ~Fullscreen_Dev();
+ Fullscreen(Instance* instance);
+ virtual ~Fullscreen();
- // PPB_Fullscreen_Dev methods.
+ // PPB_Fullscreen methods.
bool IsFullscreen();
bool SetFullscreen(bool fullscreen);
bool GetScreenSize(Size* size);
@@ -26,4 +26,4 @@
} // namespace pp
-#endif // PPAPI_CPP_DEV_FULLSCREEN_DEV_H_
+#endif // PPAPI_CPP_FULLSCREEN_H_
« no previous file with comments | « ppapi/c/ppb_fullscreen.h ('k') | ppapi/cpp/fullscreen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698