Give names to all utility processes.
[chromium-blink-merge.git] / ios / chrome / browser / experimental_flags.mm
bloba1ab78ee02c8030a51de69c2f953783f9aafb398
1 // Copyright 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.
5 // This file can be empty. Its purpose is to contain the relatively short lived
6 // definitions required for experimental flags.
8 #include "ios/chrome/browser/experimental_flags.h"
10 #include "base/command_line.h"
11 #include "ios/chrome/browser/chrome_switches.h"
13 namespace experimental_flags {
15 bool IsOpenFromClipboardEnabled() {
16   base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
17   return command_line->HasSwitch(switches::kEnableIOSOpenFromClipboard);
20 }  // namespace experimental_flags