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

Side by Side Diff: chrome/common/chrome_content_client.h

Issue 12805004: Remove mention of the nacl process in content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/chrome_content_client.cc » ('j') | content/common/sandbox_policy.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ 5 #ifndef CHROME_COMMON_CHROME_CONTENT_CLIENT_H_
6 #define CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ 6 #define CHROME_COMMON_CHROME_CONTENT_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 21 matching lines...) Expand all
32 virtual std::string GetProduct() const OVERRIDE; 32 virtual std::string GetProduct() const OVERRIDE;
33 virtual std::string GetUserAgent() const OVERRIDE; 33 virtual std::string GetUserAgent() const OVERRIDE;
34 virtual string16 GetLocalizedString(int message_id) const OVERRIDE; 34 virtual string16 GetLocalizedString(int message_id) const OVERRIDE;
35 virtual base::StringPiece GetDataResource( 35 virtual base::StringPiece GetDataResource(
36 int resource_id, 36 int resource_id,
37 ui::ScaleFactor scale_factor) const OVERRIDE; 37 ui::ScaleFactor scale_factor) const OVERRIDE;
38 virtual base::RefCountedStaticMemory* GetDataResourceBytes( 38 virtual base::RefCountedStaticMemory* GetDataResourceBytes(
39 int resource_id) const OVERRIDE; 39 int resource_id) const OVERRIDE;
40 virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE; 40 virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
41 41
42 #if defined(OS_MACOSX) && !defined(OS_IOS) 42 #if defined(OS_WIN)
43 virtual void AddPolicy(CommandLine* command_line,
44 sandbox::TargetPolicy* policy) OVERRIDE;
45 #elif defined(OS_MACOSX) && !defined(OS_IOS)
43 virtual bool GetSandboxProfileForSandboxType( 46 virtual bool GetSandboxProfileForSandboxType(
44 int sandbox_type, 47 int sandbox_type,
45 int* sandbox_profile_resource_id) const OVERRIDE; 48 int* sandbox_profile_resource_id) const OVERRIDE;
46 virtual std::string GetCarbonInterposePath() const OVERRIDE; 49 virtual std::string GetCarbonInterposePath() const OVERRIDE;
47 #endif 50 #endif
48 }; 51 };
49 52
50 } // namespace chrome 53 } // namespace chrome
51 54
52 #endif // CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ 55 #endif // CHROME_COMMON_CHROME_CONTENT_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/common/chrome_content_client.cc » ('j') | content/common/sandbox_policy.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698