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

Side by Side Diff: content/public/common/content_switches.cc

Issue 21271002: Added SkImageFilter serialization (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Skia API changes Created 7 years, 4 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
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 #include "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 #if defined(OS_POSIX) 920 #if defined(OS_POSIX)
921 // Causes the child processes to cleanly exit via calling exit(). 921 // Causes the child processes to cleanly exit via calling exit().
922 const char kChildCleanExit[] = "child-clean-exit"; 922 const char kChildCleanExit[] = "child-clean-exit";
923 #endif 923 #endif
924 924
925 #if defined(USE_AURA) 925 #if defined(USE_AURA)
926 // Forces usage of the test compositor. Needed to run ui tests on bots. 926 // Forces usage of the test compositor. Needed to run ui tests on bots.
927 extern const char kTestCompositor[] = "test-compositor"; 927 extern const char kTestCompositor[] = "test-compositor";
928 #endif 928 #endif
929 929
930 // Don't dump stuff here, follow the same order as the header. 930 // Don't dump stuff here, follow the same order as the header.
gab 2013/08/22 02:37:19 See this line. New switches should be added in al
931 931
932 // Allows filters (SkImageFilter objects) to be sent between processes over IPC
933 const char kAllowFiltersOverIPC[] = "allow-filters-over-ipc";
934
932 } // namespace switches 935 } // namespace switches
OLDNEW
« content/common/cc_messages.cc ('K') | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698