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

Side by Side Diff: base/native_library_ios.mm

Issue 1030253002: Fix missing symbols for pre-linking of the Cast sender library for iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update media/base/BUILD.gn. Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « base/base.gypi ('k') | base/process/process_metrics_ios.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2015 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.
4
5 #include "base/native_library.h"
6
7 #include "base/logging.h"
8
9 namespace base {
10
11 std::string NativeLibraryLoadError::ToString() const {
12 return message;
13 }
14
15 // static
16 NativeLibrary LoadNativeLibrary(const base::FilePath& library_path,
17 NativeLibraryLoadError* error) {
18 NOTIMPLEMENTED();
19 return nullptr;
20 }
21
22 // static
23 void UnloadNativeLibrary(NativeLibrary library) {
24 NOTIMPLEMENTED();
25 DCHECK(!library);
26 }
27
28 // static
29 void* GetFunctionPointerFromNativeLibrary(NativeLibrary library,
30 const char* name) {
31 NOTIMPLEMENTED();
32 return nullptr;
33 }
34
35 // static
36 string16 GetNativeLibraryName(const string16& name) {
37 return name;
38 }
39
40 } // namespace base
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | base/process/process_metrics_ios.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698