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

Unified Diff: chrome/app/main_dll_loader_win.h

Issue 1402353011: Expose a function to get the path to a DLL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: chrome/app/main_dll_loader_win.h
diff --git a/chrome/app/client_util.h b/chrome/app/main_dll_loader_win.h
similarity index 85%
copy from chrome/app/client_util.h
copy to chrome/app/main_dll_loader_win.h
index de09a667af9d669ef14096856c4d96b9f2d2d548..07fc517ff0048f2bd7c4c9c6f6f10590f16ecb00 100644
--- a/chrome/app/client_util.h
+++ b/chrome/app/main_dll_loader_win.h
@@ -2,25 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// This file defines utility functions that can report details about the
-// host operating environment.
+// This file defines a class to load the main DLL of a Chrome process.
-#ifndef CHROME_APP_CLIENT_UTIL_H_
-#define CHROME_APP_CLIENT_UTIL_H_
+#ifndef CHROME_APP_MAIN_DLL_LOADER_WIN_H_
+#define CHROME_APP_MAIN_DLL_LOADER_WIN_H_
#include <windows.h>
#include <string>
+#include "base/files/file_path.h"
#include "base/strings/string16.h"
namespace sandbox {
- struct SandboxInterfaceInfo;
+struct SandboxInterfaceInfo;
grt (UTC plus 2) 2015/10/29 18:51:50 unused
fdoray 2015/10/30 14:45:45 Done.
}
-// Returns the version in the current module's version resource or the empty
-// string if none found.
-base::string16 GetCurrentModuleVersion();
-
// Implements the common aspects of loading the main dll for both chrome and
// chromium scenarios, which are in charge of implementing two abstract
// methods: GetRegistryPath() and OnBeforeLaunch().
@@ -69,4 +65,4 @@ class MainDllLoader {
// delete to free it.
MainDllLoader* MakeMainDllLoader();
-#endif // CHROME_APP_CLIENT_UTIL_H_
+#endif // CHROME_APP_MAIN_DLL_LOADER_WIN_H_

Powered by Google App Engine
This is Rietveld 408576698