Remove unused methods

This commit is contained in:
Kevin Sawicki
2012-06-07 19:20:02 -07:00
parent aaca57ff7b
commit 281a8a20cf
2 changed files with 1 additions and 21 deletions

View File

@@ -73,17 +73,6 @@ CefWindowHandle AppGetMainHwnd() {
return g_handler->GetMainHwnd();
}
void AppInitCommandLine(int argc, const char* const * argv) {
g_command_line = CefCommandLine::CreateCommandLine();
g_command_line->InitFromArgv(argc, argv);
}
// Returns the application command line object.
CefRefPtr<CefCommandLine> AppGetCommandLine() {
return g_command_line;
}
// Returns the application settings based on command line arguments.
void AppGetSettings(CefSettings& settings, CefRefPtr<CefApp>& app) {
CefString(&settings.cache_path) = "";
CefString(&settings.user_agent) = "";

View File

@@ -28,16 +28,7 @@ std::string AppPath();
// Returns the initial path to open.
std::string PathToOpen();
// Initialize the application command line.
void AppInitCommandLine(int argc, const char* const * argv);
// Returns the application command line object.
CefRefPtr<CefCommandLine> AppGetCommandLine();
// Returns the application settings based on command line arguments.
// Returns the application settings
void AppGetSettings(CefSettings& settings, CefRefPtr<CefApp>& app);
// Returns the application browser settings based on command line arguments.
void AppGetBrowserSettings(CefBrowserSettings& settings);
#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_H_