Remove unneeded cefclient.h and cefclient.cpp files

This commit is contained in:
Kevin Sawicki
2012-06-13 16:05:02 -07:00
parent cce9a159b2
commit d5d7325bc9
5 changed files with 17 additions and 92 deletions

34
Atom-Linux/atom.h Normal file
View File

@@ -0,0 +1,34 @@
// Copyright (c) 2011 The Chromium Embedded Framework 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 CEF_TESTS_CEFCLIENT_CEFCLIENT_H_
#define CEF_TESTS_CEFCLIENT_CEFCLIENT_H_
#pragma once
#include <string>
#include "include/cef_base.h"
class CefApp;
class CefBrowser;
class CefCommandLine;
// Returns the main browser window instance.
CefRefPtr<CefBrowser> AppGetBrowser();
// Returns the main application window handle.
CefWindowHandle AppGetMainHwnd();
// Returns the application working directory.
std::string AppGetWorkingDirectory();
// Returns the application's path.
std::string AppPath();
// Returns the initial path to open.
std::string PathToOpen();
// Returns the application settings
void AppGetSettings(CefSettings& settings, CefRefPtr<CefApp>& app);
#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_H_