Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ios / chrome / app / safe_mode_util.h
blobd4e25fd52ac7f7d5955ef859e75c9b19c2ebd545
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef IOS_CHROME_APP_SAFE_MODE_UTIL_H_
6 #define IOS_CHROME_APP_SAFE_MODE_UTIL_H_
8 #include <string>
9 #include <vector>
11 namespace safe_mode_util {
13 // Returns a list of the paths of all images (e.g., dynamic libraries)
14 // currently loaded.
15 // If |path_filter| is non-NULL, only paths starting with |path_filter| will be
16 // returned.
17 std::vector<std::string> GetLoadedImages(const char* path_filter);
19 } // namespace safe_mode_util
21 #endif // IOS_CHROME_APP_SAFE_MODE_UTIL_H_